diff options
Diffstat (limited to 'src/item.cpp')
-rw-r--r-- | src/item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/item.cpp b/src/item.cpp index ca860eeea..b8c2194f3 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -117,7 +117,7 @@ Image *Item::getImage(const int id, const unsigned char color) std::string Item::getName() const { const ItemInfo &info = ItemDB::get(mId); - if (Net::getServerFeatures()->haveItemColors()) + if (serverFeatures->haveItemColors()) return info.getName(mColor); else return info.getName(); |