diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js index 5d2e5c5c83939e727602efdc04d95b9509d64f4f..9468771f11d8d28f54d940a53e64aed7166bc039 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) {