diff options
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/functions/barber.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/functions/barber.txt b/world/map/npc/functions/barber.txt index 7d4bb62d..477b4a7b 100644 --- a/world/map/npc/functions/barber.txt +++ b/world/map/npc/functions/barber.txt @@ -17,7 +17,7 @@ function|script|Barber|{ set @color$, "Unknown"; if (@style >= 0 && @style < 20) set @style$, $@HairStyles$[@style]; - if (@color >= 0 && color < 20) + if (@color >= 0 && @color < 20) set @color$, $@HairColors$[@color]; if (@color == 127) set @color$, "Shocked White"; @@ -68,7 +68,7 @@ L_RandomStyle: goto L_Done; L_SameStyle: - mes "Your hair was already that style"; + mes "Your hair already has that style."; goto L_Main; L_Color: @@ -100,7 +100,7 @@ L_RandomColor: goto L_Done; L_SameColor: - mes "Your hair was already that color"; + mes "Your hair is already that color."; goto L_Main; L_Done: |