summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-06 01:01:13 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-06 01:01:13 +0000
commit1f3fb6e24ba2cf2a790f743ed55cd003ffae922f (patch)
treee531e45f7be67c8c20430015fc978f6bdcde641f /src/map/status.c
parent91fa13f861e8b73f048375a237a4a7cbf33e3370 (diff)
downloadhercules-1f3fb6e24ba2cf2a790f743ed55cd003ffae922f.tar.gz
hercules-1f3fb6e24ba2cf2a790f743ed55cd003ffae922f.tar.bz2
hercules-1f3fb6e24ba2cf2a790f743ed55cd003ffae922f.tar.xz
hercules-1f3fb6e24ba2cf2a790f743ed55cd003ffae922f.zip
- Fixed an error on the error-message when job_db1 doesn't has enough columns.
- Fixed undisguising not clearing the mob sprite for the disguised character. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5917 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 0c6d6d6fb..dba67d0fb 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -5877,7 +5877,7 @@ int status_readdb(void) {
}
if(j < MAX_WEAPON_TYPE + 5)
{ //Weapon #.MAX_WEAPON_TYPE is constantly not load. Fix to that: replace < with <= [blackhole89]
- ShowDebug("%s: Not enough columns at line %d\n", i, j);
+ ShowDebug("%s: Not enough columns at line %d\n", path, i);
continue;
}
if(atoi(split[0])>=MAX_PC_CLASS)