diff options
author | panikon <panikon@zoho.com> | 2014-04-12 02:48:02 -0300 |
---|---|---|
committer | panikon <panikon@zoho.com> | 2014-04-12 02:48:02 -0300 |
commit | c1f916acdd60282af3838a204e9ec959e1beac12 (patch) | |
tree | 7627b02fcca9b3cab8f3b7dc09db19577b509ddd /src/map/clif.c | |
parent | 6f6a6b3db3b36846f68e6b8ccb59351dced66ab3 (diff) | |
download | hercules-c1f916acdd60282af3838a204e9ec959e1beac12.tar.gz hercules-c1f916acdd60282af3838a204e9ec959e1beac12.tar.bz2 hercules-c1f916acdd60282af3838a204e9ec959e1beac12.tar.xz hercules-c1f916acdd60282af3838a204e9ec959e1beac12.zip |
Follow up to 6f6a6b3
Fixing small typo in that commit
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 15acfd117..ff8cc9653 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11337,7 +11337,7 @@ void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) if( pc_cant_act(sd) && skill_id != RK_REFRESH && !(skill_id == SR_GENTLETOUCH_CURE && (sd->sc.opt1 == OPT1_STONE || sd->sc.opt1 == OPT1_FREEZE || sd->sc.opt1 == OPT1_STUN)) - && ( sd->state.storage_flag && !tmp&INF_SELF_SKILL ) // SELF skills can be used with the storage open, issue: 8027 + && ( sd->state.storage_flag && !(tmp&INF_SELF_SKILL) ) // SELF skills can be used with the storage open, issue: 8027 ) return; |