diff options
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 66de463a1..c58997ce6 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -305,17 +305,17 @@ std::string Inventory::getName() const // TRANSLATORS: inventory type name return N_("Storage"); } - case InventoryType::CART: - { - // TRANSLATORS: inventory type name - return N_("Cart"); - } case InventoryType::NPC: { // TRANSLATORS: inventory type name return N_("Npc"); } #ifdef EATHENA_SUPPORT + case InventoryType::CART: + { + // TRANSLATORS: inventory type name + return N_("Cart"); + } case InventoryType::MAIL: { // TRANSLATORS: inventory type name |