diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-15 13:57:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-17 00:37:21 +0300 |
commit | d48884f776c943b32bf432076ac28180a4410b06 (patch) | |
tree | 6ce8b1d49b149f2c70ca4bd620e6221790e89541 /src/map/itemdb.c | |
parent | 445bb7d0595832b3fed3ad3218073c4f6b6bb207 (diff) | |
download | hercules-d48884f776c943b32bf432076ac28180a4410b06.tar.gz hercules-d48884f776c943b32bf432076ac28180a4410b06.tar.bz2 hercules-d48884f776c943b32bf432076ac28180a4410b06.tar.xz hercules-d48884f776c943b32bf432076ac28180a4410b06.zip |
Move check is item usable or not to separate method.
New method: itemdb_is_item_usable
Can be used as: itemdb->is_item_usable(item)
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r-- | src/map/itemdb.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 508a0ccec..545ce9ba0 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -2054,6 +2054,14 @@ struct item_combo * itemdb_id2combo( unsigned short id ) { return itemdb->combos[id]; } +/** + * check is item have usable type + **/ +bool itemdb_is_item_usable(struct item_data *item) +{ + return item->type == IT_HEALING || item->type == IT_USABLE || item->type == IT_CASH; +} + /*========================================== * Initialize / Finalize *------------------------------------------*/ @@ -2337,4 +2345,5 @@ void itemdb_defaults(void) { itemdb->final_sub = itemdb_final_sub; itemdb->clear = itemdb_clear; itemdb->id2combo = itemdb_id2combo; + itemdb->is_item_usable = itemdb_is_item_usable; } |