summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-18 00:51:34 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-18 00:52:29 +0300
commitb3cf7bd2daeb46a613611e8a5d3f47736b5780e9 (patch)
treec20e69c4ad52540572f5b597d292e853fb78e307 /src/being
parentb73e51c8993c6e2eef7a28a79ea79b7a6d61783d (diff)
downloadplus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.tar.gz
plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.tar.bz2
plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.tar.xz
plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.zip
Remove default parameter from inventory.
Diffstat (limited to 'src/being')
-rw-r--r--src/being/playerinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp
index d56934d31..45c8dff15 100644
--- a/src/being/playerinfo.cpp
+++ b/src/being/playerinfo.cpp
@@ -470,9 +470,9 @@ void stateChange(const StateT state)
{
if (mInventory == nullptr)
{
- mInventory = new Inventory(InventoryType::Inventory);
+ mInventory = new Inventory(InventoryType::Inventory, -1);
mEquipment = new Equipment;
- mCartInventory = new Inventory(InventoryType::Cart);
+ mCartInventory = new Inventory(InventoryType::Cart, -1);
}
}
}