summaryrefslogtreecommitdiff
path: root/npc/commands
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-04-26 12:26:14 +0000
committerJesusaves <cpntb1@ymail.com>2019-04-26 12:26:14 +0000
commite0ac7e9176fb0041d87ea519d28e2ebf5049ef91 (patch)
treeaa10f65d7d94315a9ff4e9c7e19189729ef4e874 /npc/commands
parent4d06e3796632e6200d5ec8cf0b5266347ff9d6bf (diff)
downloadserverdata-e0ac7e9176fb0041d87ea519d28e2ebf5049ef91.tar.gz
serverdata-e0ac7e9176fb0041d87ea519d28e2ebf5049ef91.tar.bz2
serverdata-e0ac7e9176fb0041d87ea519d28e2ebf5049ef91.tar.xz
serverdata-e0ac7e9176fb0041d87ea519d28e2ebf5049ef91.zip
Address race concerns of evol-all#35 because I wanted something pretty.
I know I am wasting time. @WildX will probably agree, too. But meh. This outlines server-side how races may work and thus, includes get_race() function making !156 deprecated
Diffstat (limited to 'npc/commands')
-rw-r--r--npc/commands/debug-look.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/commands/debug-look.txt b/npc/commands/debug-look.txt
index 79bf8699..4ab9ed44 100644
--- a/npc/commands/debug-look.txt
+++ b/npc/commands/debug-look.txt
@@ -41,7 +41,7 @@ function script BarberDebug {
function setRace {
clear;
setnpcdialogtitle l("Appearance Debug - Race");
- mes l("Race") + ": " + Class;
+ mes l("Race") + ": " + Class + " (" + get_race(GETRACE_FULL) + ")";
next;
mes l("Please enter the desired race") + " (0-32767)";
input .@r, 0, 0x7FFF;
@@ -60,7 +60,7 @@ function script BarberDebug {
mes l("Gender") + ": " + Sex;
mes l("Hair style") + ": " + getlook(LOOK_HAIR);
mes l("Hair color") + ": " + getlook(LOOK_HAIR_COLOR);
- mes l("Race") + ": " + Class;
+ mes l("Race") + ": " + Class + " (" + get_race() + ")";;
mes "---";
next;