diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/barber.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt index 6dd308fb..1aad85ba 100644 --- a/npc/functions/barber.txt +++ b/npc/functions/barber.txt @@ -41,7 +41,7 @@ function script BarberChangeStyle { set @style, @menu; if (@style == 29) set @style, rand(28); - setlook 1, @style; + setlook LOOK_HAIR, @style; L_Done: return; } @@ -75,7 +75,7 @@ function script BarberChangeColor { set @color, @menu - 1; if (@color == 21) set @color, rand(20); - setlook 6, @color; + setlook LOOK_HAIR_COLOR, @color; L_Done: return; } |