diff options
author | EyesOfAHawk <blackoutro2006@gmail.com> | 2018-08-11 01:32:09 +1200 |
---|---|---|
committer | EyesOfAHawk <blackoutro2006@gmail.com> | 2018-08-11 01:32:09 +1200 |
commit | 32d0e9d40aef79b1c8c0cff29ea9537f4e9e5c42 (patch) | |
tree | af611622c3c84cd778ec17fdce1ce9623f5c83f4 /src/map/skill.c | |
parent | 7f7b8060cba8f0aba60f43cf343bdf3f773f3438 (diff) | |
download | hercules-32d0e9d40aef79b1c8c0cff29ea9537f4e9e5c42.tar.gz hercules-32d0e9d40aef79b1c8c0cff29ea9537f4e9e5c42.tar.bz2 hercules-32d0e9d40aef79b1c8c0cff29ea9537f4e9e5c42.tar.xz hercules-32d0e9d40aef79b1c8c0cff29ea9537f4e9e5c42.zip |
Supresses warning in skill_attack when MAGIC_REFLECTION_TYPE is 0.
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index a4ebff9f1..7d47cfcb6 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2745,7 +2745,11 @@ static int skill_magic_reflect(struct block_list *src, struct block_list *bl, in static int skill_attack(int attack_type, struct block_list *src, struct block_list *dsrc, struct block_list *bl, uint16 skill_id, uint16 skill_lv, int64 tick, int flag) { struct Damage dmg; +#if MAGIC_REFLECTION_TYPE struct status_data *sstatus, *tstatus; +#else + struct status_data *tstatus; +#endif struct status_change *sc; struct map_session_data *sd, *tsd; int type; @@ -2780,7 +2784,9 @@ static int skill_attack(int attack_type, struct block_list *src, struct block_li ) return 0; +#if MAGIC_REFLECTION_TYPE sstatus = status->get_status_data(src); +#endif tstatus = status->get_status_data(bl); sc = status->get_sc(bl); if (sc && !sc->count) sc = NULL; //Don't need it. |