diff options
author | Haru <haru@dotalux.com> | 2013-12-11 15:01:00 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-12-11 15:03:52 +0100 |
commit | 68d6c8bc110bbecd39c47b0e00445b8b4b5eb278 (patch) | |
tree | 98804fe393e6559399e5ff0c86a73026c889a1f8 /src/map/skill.h | |
parent | 27cf11151de917892b22794c1aa798620a484850 (diff) | |
download | hercules-68d6c8bc110bbecd39c47b0e00445b8b4b5eb278.tar.gz hercules-68d6c8bc110bbecd39c47b0e00445b8b4b5eb278.tar.bz2 hercules-68d6c8bc110bbecd39c47b0e00445b8b4b5eb278.tar.xz hercules-68d6c8bc110bbecd39c47b0e00445b8b4b5eb278.zip |
Corrected some local 'mapindex' variables shadowing the global one
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/skill.h')
-rw-r--r-- | src/map/skill.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.h b/src/map/skill.h index 1b6f1e24c..28cb548d2 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -1871,7 +1871,7 @@ struct skill_interface { int (*get_casttype) (uint16 skill_id); int (*get_casttype2) (uint16 index); int (*name2id) (const char* name); - int (*isammotype) (struct map_session_data *sd, int skill); + int (*isammotype) (struct map_session_data *sd, int skill_id); int (*castend_id) (int tid, int64 tick, int id, intptr_t data); int (*castend_pos) (int tid, int64 tick, int id, intptr_t data); int (*castend_map) ( struct map_session_data *sd,uint16 skill_id, const char *mapname); |