diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-16 05:39:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-16 05:39:15 +0300 |
commit | 58a8c9e6cf38e3fdb2557ec9d00169e96411f915 (patch) | |
tree | ebc1ce9e75fa86cb16c2a7becee08717504d4aba /src/map/buyingstore.h | |
parent | 74c8caed83f291cb9f4e8a36094bf325cc7afea0 (diff) | |
download | hercules-58a8c9e6cf38e3fdb2557ec9d00169e96411f915.tar.gz hercules-58a8c9e6cf38e3fdb2557ec9d00169e96411f915.tar.bz2 hercules-58a8c9e6cf38e3fdb2557ec9d00169e96411f915.tar.xz hercules-58a8c9e6cf38e3fdb2557ec9d00169e96411f915.zip |
Replace item id shorts to int in mmo.h
Diffstat (limited to 'src/map/buyingstore.h')
-rw-r--r-- | src/map/buyingstore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/buyingstore.h b/src/map/buyingstore.h index e96cc832d..60fd047f7 100644 --- a/src/map/buyingstore.h +++ b/src/map/buyingstore.h @@ -77,7 +77,7 @@ struct s_buyingstore { **/ struct buyingstore_interface { unsigned int nextid; - short blankslots[MAX_SLOTS]; // used when checking whether or not an item's card slots are blank + int blankslots[MAX_SLOTS]; // used when checking whether or not an item's card slots are blank struct item_option blankoptions[MAX_ITEM_OPTIONS]; // used for search result temporary. /* */ bool (*setup) (struct map_session_data* sd, unsigned char slots); |