summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-11-24 23:42:57 +0000
committerParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-11-24 23:42:57 +0000
commitfe02fc4578e802610df2067123e7d94a659c9d00 (patch)
tree19b34dfdfdecfc79c10f61aa1078bdadbb7d1184
parentc4b3fec1c9f33f607f9c07d4a65dbdd96c995e8d (diff)
downloadhercules-fe02fc4578e802610df2067123e7d94a659c9d00.tar.gz
hercules-fe02fc4578e802610df2067123e7d94a659c9d00.tar.bz2
hercules-fe02fc4578e802610df2067123e7d94a659c9d00.tar.xz
hercules-fe02fc4578e802610df2067123e7d94a659c9d00.zip
Display a message showing the user where to change MAX_ITEMDELAYS when they have too many entries in the item_delays db. Follow-up to r14455.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14499 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/itemdb.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 69f2d4ca4..278c8524c 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -1,6 +1,7 @@
Date Added
2010/11/24
+ * Display a message showing the user where to change MAX_ITEMDELAYS when they have too many entries in the item_delays db. Follow-up to r14455. [Paradox924X]
* Fixed pets with player sprites causing the client to crash while looking for non-existing resources (topic:260895, follow up to r14488). [Ai4rei]
* Fixed calls to pc_delautobonus assuming map_session_data::autobonus2 and map_session_data::autobonus3 arrays having the same size as map_session_data::autobonus (since r13915). [Ai4rei]
2010/11/23
diff --git a/src/map/itemdb.c b/src/map/itemdb.c
index 2096ddf9e..d1eed4b27 100644
--- a/src/map/itemdb.c
+++ b/src/map/itemdb.c
@@ -680,7 +680,7 @@ static int itemdb_read_itemdelay(void)
while(fgets(line, sizeof(line), fp))
{
if (item_delays == MAX_ITEMDELAYS) {
- ShowError("itemdb_read_itemdelay: Too many entries specified in %s/item_delay.txt!\n", db_path);
+ ShowError("itemdb_read_itemdelay: Too many entries specified in %s/item_delay.txt! Increase MAX_ITEMDELAYS in itemdb.h!\n", db_path);
break;
}
if (line[0] == '/' && line[1] == '/')