diff options
author | Haru <haru@dotalux.com> | 2014-02-09 15:42:35 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-02-09 15:42:35 +0100 |
commit | 7b19f964b88dffcfdc8c12648d5e4ee8a26a9504 (patch) | |
tree | 0c8a5bb1dc15d107db3ef2fac8d12822511bcdec /src/map/mob.c | |
parent | 51805d1f2cedc084fea6cc390ca23a24291edbec (diff) | |
download | hercules-7b19f964b88dffcfdc8c12648d5e4ee8a26a9504.tar.gz hercules-7b19f964b88dffcfdc8c12648d5e4ee8a26a9504.tar.bz2 hercules-7b19f964b88dffcfdc8c12648d5e4ee8a26a9504.tar.xz hercules-7b19f964b88dffcfdc8c12648d5e4ee8a26a9504.zip |
Improved script case check reports to include more accurate source info.
- Fixes bugreport:8013, thanks to Dastgir Pojee
http://hercules.ws/board/tracker/issue-8013-script-add-str-problem/
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index dab7b99ac..dc83be93e 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -3962,10 +3962,16 @@ int mob_read_sqldb(void) { void mob_name_constants(void) { int i; +#ifdef ENABLE_CASE_CHECK + script->parser_current_file = "Mob Database (Likely an invalid or conflicting SpriteName)"; +#endif // ENABLE_CASE_CHECK for (i = 0; i < MAX_MOB_DB; i++) { if (mob->db_data[i] && !mob->is_clone(i)) script->set_constant2(mob->db_data[i]->sprite, i, 0); } +#ifdef ENABLE_CASE_CHECK + script->parser_current_file = NULL; +#endif // ENABLE_CASE_CHECK } /*========================================== |