diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-22 03:49:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-22 03:49:32 +0300 |
commit | 2d29847485933bf0e9ccbea4456f5473418d4b18 (patch) | |
tree | 73b85ee53e1c6898a97f118d7ebb2680e9d1ece4 /src/net/tmwa/inventoryrecv.cpp | |
parent | 84f5ea2b062a1843286b1fdeff93e8936b914ca8 (diff) | |
download | plus-2d29847485933bf0e9ccbea4456f5473418d4b18.tar.gz plus-2d29847485933bf0e9ccbea4456f5473418d4b18.tar.bz2 plus-2d29847485933bf0e9ccbea4456f5473418d4b18.tar.xz plus-2d29847485933bf0e9ccbea4456f5473418d4b18.zip |
Add check for from equip index.
Diffstat (limited to 'src/net/tmwa/inventoryrecv.cpp')
-rw-r--r-- | src/net/tmwa/inventoryrecv.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/tmwa/inventoryrecv.cpp b/src/net/tmwa/inventoryrecv.cpp index 30e30502d..6e1fe0cfe 100644 --- a/src/net/tmwa/inventoryrecv.cpp +++ b/src/net/tmwa/inventoryrecv.cpp @@ -530,6 +530,8 @@ int InventoryRecv::getSlot(const int eAthenaSlot) mask <<= 1; position++; } + if (position >= EquipSlot::VECTOREND) + return EquipSlot::VECTOREND; return CAST_S32(EQUIP_POINTS[position]); } |