summaryrefslogtreecommitdiff
path: root/npc/commands/gender.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-06-17 05:08:35 -0300
committerJesusaves <cpntb1@ymail.com>2020-06-17 05:08:35 -0300
commit654d54d42079e21ac0541cb1e5f28c08cc935d5d (patch)
treeced30475ba31099de02627b57fb264958193d70d /npc/commands/gender.txt
parent3cb4b0171536a04e177d823213a1aff51ab56f8d (diff)
parent4e242e64460a5548b77d512f317a8cd66967a95f (diff)
downloadserverdata-kfahr.tar.gz
serverdata-kfahr.tar.bz2
serverdata-kfahr.tar.xz
serverdata-kfahr.zip
Merge branch 'master' into kfahrkfahr
Diffstat (limited to 'npc/commands/gender.txt')
-rw-r--r--npc/commands/gender.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/gender.txt b/npc/commands/gender.txt
index b852beb0..9ba2c9a4 100644
--- a/npc/commands/gender.txt
+++ b/npc/commands/gender.txt
@@ -6,17 +6,17 @@
OnCall:
if (.@atcmd_parameters$[0] == "") {
- dispbottom("Your current gender is " + genderToString());
+ dispbottom("Your current body type is " + genderToString());
end;
}
.@desired = stringToGender(.@atcmd_parameters$[0]);
if (.@desired == Gender) {
- dispbottom("Your gender is already " + genderToString());
+ dispbottom("Your body type is already " + genderToString());
} else {
Gender = .@desired;
- dispbottom("Gender changed to " + genderToString());
+ dispbottom("Body Type changed to " + genderToString());
}
end;