diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 355d001fd..6fe7694b0 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8449,7 +8449,9 @@ void clif_parse_WalkToXY(int fd, struct map_session_data *sd) { return; } - if (clif_cant_act(sd) && sd->sc.opt1 != OPT1_STONEWAIT) + if (sd->sc.opt1 && sd->sc.opt1 == OPT1_STONEWAIT) + ; //You CAN walk on this OPT1 value. + else if (clif_cant_act(sd)) return; if(sd->sc.count && sd->sc.data[SC_RUN].timer != -1) |