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/cities/einbech.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/cities/einbech.txt')
-rw-r--r-- | npc/cities/einbech.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/cities/einbech.txt b/npc/cities/einbech.txt index 2cc3d1305..20d4725b4 100644 --- a/npc/cities/einbech.txt +++ b/npc/cities/einbech.txt @@ -528,7 +528,7 @@ einbech,46,107,6 script Shena#ein::EinMonsters 4_F_EINOLD,{ mes "adorable little girl?"; mes "Hello, dearie~"; next; - if (Sex) { + if (Sex == SEX_MALE) { select("Excuse me, but I'm actually a guy."); mes "[Shena]"; mes "Oh, oh are you now?"; @@ -554,7 +554,7 @@ einbech,46,107,6 script Shena#ein::EinMonsters 4_F_EINOLD,{ mes "about the monsters around"; mes "here, young lady?"; next; - if (Sex) { + if (Sex == SEX_MALE) { select("I told you, I'm a dude...!"); mes "[Shena]"; mes "Hmm. ''Dude.'' I think"; |