diff options
author | Emistry <Equinox1991@gmail.com> | 2016-01-25 23:00:26 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-29 01:52:22 +0100 |
commit | 05a2538114972de94352e66586f6f2a5affea9c6 (patch) | |
tree | f39d3e659d9b3801cc42a7b14e41aeec16c93ddf /npc/merchants/cash_hair.txt | |
parent | 75ba7024fe3b68718d0f0a289a68ea0719054d3b (diff) | |
download | hercules-05a2538114972de94352e66586f6f2a5affea9c6.tar.gz hercules-05a2538114972de94352e66586f6f2a5affea9c6.tar.bz2 hercules-05a2538114972de94352e66586f6f2a5affea9c6.tar.xz hercules-05a2538114972de94352e66586f6f2a5affea9c6.zip |
Replaced the SEX_FEMALE/SEX_MALE constants to scripts, where appropriate
Diffstat (limited to 'npc/merchants/cash_hair.txt')
-rw-r--r-- | npc/merchants/cash_hair.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/merchants/cash_hair.txt b/npc/merchants/cash_hair.txt index 6d0d1f3d5..eecdc985b 100644 --- a/npc/merchants/cash_hair.txt +++ b/npc/merchants/cash_hair.txt @@ -41,7 +41,7 @@ itemmall,19,74,5 script Stylist#cash 4_F_02,{ mes "Give me a ^FF0000New Style Coupon^000000,"; mes "and I'll change your hair~"; next; - if (Sex == 1) { + if (Sex == SEX_MALE) { mes "[Kaniki]"; mes "I have two special"; mes "hairstyles for men, the"; @@ -101,7 +101,7 @@ itemmall,19,74,5 script Stylist#cash 4_F_02,{ mes "Alright, which hairstyle"; mes "did you want to have?"; next; - if (Sex == 1) { + if (Sex == SEX_MALE) { if(select("Emergency Heal Perm", "Aura Blade Cut") == 1) { delitem New_Style_Coupon,1; // New_Style_Coupon setlook 1,24; |