From fa24fdb97db2aca73d94bb584835e9e864c8d085 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 10 May 2013 17:30:54 -0300 Subject: Fixed Bug #7236 @mount http://hercules.ws/board/tracker/issue-7236-mount/ Signed-off-by: shennetsind --- src/map/script.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/script.c') diff --git a/src/map/script.c b/src/map/script.c index 2304a9f42..fd2e2654f 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -9925,7 +9925,7 @@ BUILDIN(changebase) return true; } - if(!sd->disguise && vclass != sd->vd.class_) { + if(sd->disguise == -1 && vclass != sd->vd.class_) { status_set_viewdata(&sd->bl, vclass); //Updated client view. Base, Weapon and Cloth Colors. clif->changelook(&sd->bl,LOOK_BASE,sd->vd.class_); @@ -11787,7 +11787,7 @@ BUILDIN(undisguise) TBL_PC* sd = script_rid2sd(st); if (sd == NULL) return true; - if (sd->disguise) { + if (sd->disguise != -1) { pc_disguise(sd, -1); script_pushint(st,0); } else { -- cgit v1.2.3-60-g2f50