diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-03-31 10:13:41 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-03-31 10:18:50 -0700 |
commit | 993830a5063b8d2af4240ea5bf1c06dfa4f66b7d (patch) | |
tree | 9900dab35a49132158c53497f63fbabd1fa6cc9f /src/map/map.hpp | |
parent | 1a651243bb2c8e18baa9aac30ac52a62185074e7 (diff) | |
download | tmwa-993830a5063b8d2af4240ea5bf1c06dfa4f66b7d.tar.gz tmwa-993830a5063b8d2af4240ea5bf1c06dfa4f66b7d.tar.bz2 tmwa-993830a5063b8d2af4240ea5bf1c06dfa4f66b7d.tar.xz tmwa-993830a5063b8d2af4240ea5bf1c06dfa4f66b7d.zip |
Check the equip index array
Diffstat (limited to 'src/map/map.hpp')
-rw-r--r-- | src/map/map.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.hpp b/src/map/map.hpp index cb57c6b..9ab256d 100644 --- a/src/map/map.hpp +++ b/src/map/map.hpp @@ -174,7 +174,7 @@ struct map_session_data : block_list, SessionData CharKey status_key; CharData status; Array<struct item_data *, MAX_INVENTORY> inventory_data; - earray<short, EQUIP, EQUIP::COUNT> equip_index; + earray<short, EQUIP, EQUIP::COUNT> equip_index_maybe; int weight, max_weight; MapName mapname_; Session *sess; // use this, you idiots! |