diff --git a/src/item.cpp b/src/item.cpp index ae152ccea..070467099 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -461,10 +461,11 @@ bool Item::operator<(const Item &rhs) const { bool Item::Wearable() const { return (category_ == "flasks" - || category_ == "amulet" || category_ == "ring" || category_ == "belt" - || category_.find("armour") != std::string::npos + || category_ == "amulets" || category_ == "rings" || category_ == "belts" + || category_.find("armours") != std::string::npos || category_.find("weapons") != std::string::npos || category_.find("jewels") != std::string::npos + || category_ == "quivers" ); }