diff options
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |