diff options
Diffstat (limited to 'src/being/playerinfo.cpp')
-rw-r--r-- | src/being/playerinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp index b3c3f5bb4..a665001ce 100644 --- a/src/being/playerinfo.cpp +++ b/src/being/playerinfo.cpp @@ -466,10 +466,10 @@ void stateChange(const State state) { if (!mInventory) { - mInventory = new Inventory(InventoryType::INVENTORY); + mInventory = new Inventory(InventoryType::Inventory); mEquipment = new Equipment(); #ifdef EATHENA_SUPPORT - mCartInventory = new Inventory(InventoryType::CART); + mCartInventory = new Inventory(InventoryType::Cart); #endif } } |