summaryrefslogtreecommitdiff
path: root/npc/commands/gender.txt
diff options
context:
space:
mode:
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;