summaryrefslogtreecommitdiff
path: root/npc/commands/debug-look.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2020-11-10 15:35:56 +0300
committerAndrei Karas <akaras@inbox.ru>2020-11-13 06:49:35 +0300
commitc4ad7a2bdcfc30e72df5c733221fa07a8d37c1ce (patch)
tree63b6ad7665e76ffb359f111abc9c1320e786bf6a /npc/commands/debug-look.txt
parent5838c6001f2bf57c9cbe5753d3a667ac5a8ab984 (diff)
downloadserverdata-genderfix.tar.gz
serverdata-genderfix.tar.bz2
serverdata-genderfix.tar.xz
serverdata-genderfix.zip
Change body type back to gendergenderfix
Diffstat (limited to 'npc/commands/debug-look.txt')
-rw-r--r--npc/commands/debug-look.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/debug-look.txt b/npc/commands/debug-look.txt
index 0a4a953b..bb535ba2 100644
--- a/npc/commands/debug-look.txt
+++ b/npc/commands/debug-look.txt
@@ -38,7 +38,7 @@ function script BarberDebug {
mes "";
mes "---";
- mes l("Body type") + ": " + bodytypeToString(BodyType);
+ mes l("Gender") + ": " + genderToString(Gender);
mes l("Hair style") + ": " + getlook(LOOK_HAIR);
mes l("Hair color") + ": " + getlook(LOOK_HAIR_COLOR);
mes l("Race") + ": " + Class + " (" + get_race() + ")";;
@@ -47,7 +47,7 @@ function script BarberDebug {
next;
mes l("What do you want to change?");
select
- menuimage("actions/edit", l("Body type") + " [" + l("Requires logout") + "]"),
+ menuimage("actions/edit", l("Gender") + " [" + l("Requires logout") + "]"),
menuimage("actions/edit", l("Hair style")),
menuimage("actions/edit", l("Hair color")),
menuimage("actions/edit", l("Race")),
@@ -55,7 +55,7 @@ function script BarberDebug {
switch (@menu)
{
- case 1: BarberChangeBodyType(); break;
+ case 1: BarberChangeGender(); break;
case 2: setStyle; break;
case 3: setColor; break;
case 4: setRace; break;