diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-05-15 10:10:06 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-05-15 10:11:09 -0700 |
commit | 642ece5724d07898b572da8a1923d0ba5073bcc4 (patch) | |
tree | c69e4f22d3bcf8b6a34448de7aa3d9431d3d27eb /src/map/clif.cpp | |
parent | 321a3f4637240f6a023ae3533160e5aa6be0a804 (diff) | |
download | tmwa-642ece5724d07898b572da8a1923d0ba5073bcc4.tar.gz tmwa-642ece5724d07898b572da8a1923d0ba5073bcc4.tar.bz2 tmwa-642ece5724d07898b572da8a1923d0ba5073bcc4.tar.xz tmwa-642ece5724d07898b572da8a1923d0ba5073bcc4.zip |
Fix magic attack overrides
Diffstat (limited to 'src/map/clif.cpp')
-rw-r--r-- | src/map/clif.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 838c1f4..1deb1f3 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -695,8 +695,7 @@ int clif_set0078(struct map_session_data *sd, unsigned char *buf) WBUFW(buf, 14) = sd->status.species; WBUFW(buf, 16) = sd->status.hair; if (sd->attack_spell_override) - // should be WBUFW ? - WBUFB(buf, 18) = sd->attack_spell_look_override; + WBUFW(buf, 18) = sd->attack_spell_look_override; else { if (sd->equip_index[EQUIP::WEAPON] >= 0 |