summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorgreenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-22 00:10:08 +0000
committergreenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-22 00:10:08 +0000
commitf4fe3b62d35fe1856f31a3e6f572bd2d3970a7cd (patch)
tree6b2846a269f492648e7bf285ae90737eda322013 /src/map/clif.c
parentb37efb0fe8c81e15c1cee646cc8c7bf344c9ead6 (diff)
downloadhercules-f4fe3b62d35fe1856f31a3e6f572bd2d3970a7cd.tar.gz
hercules-f4fe3b62d35fe1856f31a3e6f572bd2d3970a7cd.tar.bz2
hercules-f4fe3b62d35fe1856f31a3e6f572bd2d3970a7cd.tar.xz
hercules-f4fe3b62d35fe1856f31a3e6f572bd2d3970a7cd.zip
Fixed bugreport:5537 SR_GENTLETOUCH_CURE now acts with official behavior.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15910 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 942886b5c..62ead6c1b 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -10582,7 +10582,7 @@ void clif_parse_UseSkillToId(int fd, struct map_session_data *sd)
// Whether skill fails or not is irrelevant, the char ain't idle. [Skotlex]
sd->idletime = last_tick;
- if( pc_cant_act(sd) )
+ if( pc_cant_act(sd) && !(skillnum == SR_GENTLETOUCH_CURE && (sd->sc.opt1 == OPT1_STONE || sd->sc.opt1 == OPT1_FREEZE || sd->sc.opt1 == OPT1_STUN)) )
return;
if( pc_issit(sd) )
return;