diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2013-10-16 21:01:07 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2013-10-16 21:01:07 +0800 |
commit | f943c061b5c29bf906830c8ff9e9114f00a88951 (patch) | |
tree | 3fb19a8e76d132e7d811da1b13b4b09a85f48f7d /src/map/itemdb.c | |
parent | d31790a2e2305fac4acb48a42a7ab2ef69830428 (diff) | |
download | hercules-f943c061b5c29bf906830c8ff9e9114f00a88951.tar.gz hercules-f943c061b5c29bf906830c8ff9e9114f00a88951.tar.bz2 hercules-f943c061b5c29bf906830c8ff9e9114f00a88951.tar.xz hercules-f943c061b5c29bf906830c8ff9e9114f00a88951.zip |
Fixed Bug#7770
-split 'item_delay.txt'.
Follow up @ 9692bc034537693d331148ae8bd15153265c6cf0
-implement PACKET_ZC_SHOWSCRIPT. Special thanks to Kyeme and super awesome Yommy.
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r-- | src/map/itemdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 09eec557d..5c698b3c9 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -1946,7 +1946,7 @@ void itemdb_read(void) { sv->readdb(map->db_path, "item_avail.txt", ',', 2, 2, -1, itemdb->read_itemavail); sv->readdb(map->db_path, DBPATH"item_trade.txt", ',', 3, 3, -1, itemdb->read_itemtrade); - sv->readdb(map->db_path, "item_delay.txt", ',', 2, 2, -1, itemdb->read_itemdelay); + sv->readdb(map->db_path, DBPATH"item_delay.txt", ',', 2, 2, -1, itemdb->read_itemdelay); sv->readdb(map->db_path, "item_stack.txt", ',', 3, 3, -1, itemdb->read_stack); sv->readdb(map->db_path, DBPATH"item_buyingstore.txt", ',', 1, 1, -1, itemdb->read_buyingstore); sv->readdb(map->db_path, "item_nouse.txt", ',', 3, 3, -1, itemdb->read_nouse); |