From 24b7412c47d3382e073274d2c540872c19fca463 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 30 Nov 2020 00:25:01 -0500 Subject: [PATCH] should't see hair dye in cheat --- src/events/intro/pcAppearance.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js index 5d2e5c5c839..9468771f11d 100644 --- a/src/events/intro/pcAppearance.js +++ b/src/events/intro/pcAppearance.js @@ -27,12 +27,12 @@ App.UI.Player.appearance = function(options) { options.addOption("Your genetic eye color is", "origColor", V.PC.eye).showTextBox() .addValueList(makeAList(App.Medicine.Modification.eyeColor.map(color => color.value))); - options.addOption("Your hair is", "hColor", V.PC).showTextBox() - .addValueList(makeAList(App.Medicine.Modification.Color.Primary.map(color => color.value))); - if (V.cheatMode) { options.addOption("Your original hair is", "origHColor", V.PC).showTextBox() .addValueList(makeAList(App.Medicine.Modification.Color.Primary.map(color => color.value))); + } else { + options.addOption("Your hair is", "hColor", V.PC).showTextBox() + .addValueList(makeAList(App.Medicine.Modification.Color.Primary.map(color => color.value))); } function makeAList(iterable) { -- GitLab