diff options
author | shennetsind <ind@henn.et> | 2013-06-06 20:18:51 -0300 |
---|---|---|
committer | Euphy <euphy@rathena.org> | 2013-06-15 15:40:44 -0400 |
commit | aff746ed104ab2e8dfab32e4142e00f54edefa4e (patch) | |
tree | 74771cf8a034070f2569f71e5843c4543e81022b /src | |
parent | 4cc57cb106b0b3666480545551c57bab9d97e948 (diff) | |
download | hercules-aff746ed104ab2e8dfab32e4142e00f54edefa4e.tar.gz hercules-aff746ed104ab2e8dfab32e4142e00f54edefa4e.tar.bz2 hercules-aff746ed104ab2e8dfab32e4142e00f54edefa4e.tar.xz hercules-aff746ed104ab2e8dfab32e4142e00f54edefa4e.zip |
Enhanced warning on skill_unitgrouptickset_search
So we can get some clue as to what is trying to cast it.
Special Thanks to Zopokx.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 0ca775ef7..0799dc1de 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -15336,7 +15336,7 @@ struct skill_unit_group_tickset *skill_unitgrouptickset_search (struct block_lis } if (j == -1) { - ShowWarning ("skill_unitgrouptickset_search: tickset is full\n"); + ShowWarning ("skill_unitgrouptickset_search: tickset is full. ( failed for skill '%s' on unit %d )\n",skill->get_name(group->skill_id),bl->type); j = id % MAX_SKILLUNITGROUPTICKSET; } |