diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-11-10 15:35:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-11-13 06:49:35 +0300 |
commit | c4ad7a2bdcfc30e72df5c733221fa07a8d37c1ce (patch) | |
tree | 63b6ad7665e76ffb359f111abc9c1320e786bf6a /npc/functions/main.txt | |
parent | 5838c6001f2bf57c9cbe5753d3a667ac5a8ab984 (diff) | |
download | serverdata-genderfix.tar.gz serverdata-genderfix.tar.bz2 serverdata-genderfix.tar.xz serverdata-genderfix.zip |
Change body type back to gendergenderfix
Diffstat (limited to 'npc/functions/main.txt')
-rw-r--r-- | npc/functions/main.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 3be6b6fb..aaac5c16 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -54,8 +54,7 @@ function script mesq { } function script g { - // TODO: remove gendered lines from NPCs, or use any(getarg(0), getarg(1)) to make it random - return BodyType == 0 ? getarg(0) : getarg(1); + return Gender == 0 ? getarg(0) : getarg(1); } function script b { |