summaryrefslogtreecommitdiff
path: root/src/map/itemdb.c
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 /src/map/itemdb.c
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
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r--src/map/itemdb.c2
1 files changed, 1 insertions, 1 deletions
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] == '/')