diff options
author | Haru <haru@dotalux.com> | 2016-02-29 01:53:24 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-29 01:53:24 +0100 |
commit | 12a85a011c2008ea92b9197e79646aaa6ece5a41 (patch) | |
tree | f39d3e659d9b3801cc42a7b14e41aeec16c93ddf /npc/jobs/2-1/assassin.txt | |
parent | 844d429119e671f8abbdb335233eba1bb156721c (diff) | |
parent | 05a2538114972de94352e66586f6f2a5affea9c6 (diff) | |
download | hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.gz hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.bz2 hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.xz hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.zip |
Merged pull request #1123 - Add Constant for Gender.
Closes #1123 as merged
Diffstat (limited to 'npc/jobs/2-1/assassin.txt')
-rw-r--r-- | npc/jobs/2-1/assassin.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/jobs/2-1/assassin.txt b/npc/jobs/2-1/assassin.txt index 969990051..10bbb6534 100644 --- a/npc/jobs/2-1/assassin.txt +++ b/npc/jobs/2-1/assassin.txt @@ -377,7 +377,7 @@ OnTouch: close; case 2: mes "[Assassin 'Khai']"; - if (Sex) { + if (Sex == SEX_MALE) { mes "Huh. You must have a lot of self confidence to be a Thief nowadays."; next; mes "[Assassin 'Khai']"; @@ -1877,7 +1877,7 @@ OnTouch: mes "Haha, the needs of the body are sometimes hard to ignore. It's best to accept that part of human nature."; next; mes "[Guildmaster]"; - if (Sex) + if (Sex == SEX_MALE) mes "But you must never reveal to her the Assassin side of your life. No matter what it takes."; else mes "But you must never reveal to him the Assassin side of your life, no matter what it takes."; |