diff options
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r-- | src/gui/sell.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 2c9e8745..711a417e 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -93,7 +93,8 @@ void SellDialog::addItem(short index, int price) int id = inventoryWindow->items->getId(index); ITEM_SHOP item_shop; - sprintf(item_shop.name, "%s %i gp", itemDb.getName(id).c_str(), price); + sprintf(item_shop.name, "%s %i gp", + itemDb.getItemInfo(id)->getName().c_str(), price); item_shop.price = price; item_shop.index = index; item_shop.id = id; |