From 9e22060a388bb41682a15dd0d6d2cbe2229fc2d2 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 29 Nov 2020 22:58:41 -0500 Subject: [PATCH] clarify eyes --- src/data/backwardsCompatibility/datatypeCleanup.js | 3 --- src/events/intro/pcAppearance.js | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js index 0b261ca576f..89659896077 100644 --- a/src/data/backwardsCompatibility/datatypeCleanup.js +++ b/src/data/backwardsCompatibility/datatypeCleanup.js @@ -2528,9 +2528,6 @@ App.Entity.Utils.PCCheatCleanup = function() { } else if (V.PC.lactation === 0 && V.PC.lactationDuration > 0) { V.PC.lactationDuration = 0; } - V.PC.eye.left.iris = V.PC.eye.right.iris; - V.PC.eye.left.pupil = V.PC.eye.right.pupil; - V.PC.eye.left.sclera = V.PC.eye.right.sclera; ibc.recalculate_coeff_id(-1); PCDatatypeCleanup(); diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js index a0740b10d52..40da5b51fc4 100644 --- a/src/events/intro/pcAppearance.js +++ b/src/events/intro/pcAppearance.js @@ -24,7 +24,7 @@ App.UI.Player.appearance = function(options) { options.addOption("Your body", "markings", V.PC) .addValueList([["Is clear of blemishes", "none"], ["Has light freckling", "freckles"], ["Has heavy freckling", "heavily freckled"]]); - options.addOption("Your eyes are", "origColor", V.PC.eye).showTextBox() + 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() -- GitLab