From 2c5c7c863eecd3530eaf3fc17709fcd73043d787 Mon Sep 17 00:00:00 2001 From: Anu <barrychahal@gmail.com> Date: Fri, 28 May 2021 23:56:00 +0000 Subject: [PATCH] Clarify disableLongDamage and curativeSideEffects labeling in options menu --- src/gui/options/options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/options/options.js b/src/gui/options/options.js index 61905049329..ee26f78f012 100644 --- a/src/gui/options/options.js +++ b/src/gui/options/options.js @@ -1008,7 +1008,7 @@ App.Intro.contentAndFlavor = function(isIntro) { options.addOption("Slaves with fat lips or heavy oral piercings may lisp", "disableLisping") .addValue("Yes", 0).on().addValue("No", 1).off(); - options.addOption("Disables the long term damage mechanic. <span class='note'>Temp option</span>", "disableLongDamage") + options.addOption("<span class='note'>(Temp option)</span> The long-term damage mechanic is currently", "disableLongDamage") .addValue("Enabled", 0).on().addValue("Disabled", 1).off(); options.addOption("Experimental male pronouns are currently", "diversePronouns") @@ -1032,9 +1032,9 @@ App.Intro.contentAndFlavor = function(isIntro) { .addValue("Enabled", 1).on().addValue("Disabled", 0).off() .addComment("Diet will still affect asset size."); - options.addOption("Curative side effects are", "curativeSideEffects") + options.addOption("Chem damage from drugs is", "curativeSideEffects") //Yes, this variable controls all chem damage. The vestigial "curatives" name isn't worth changing. .addValue("Enabled", 1).on().addValue("Disabled", 0).off() - .addComment("If enabled, curatives have a chance to give slaves harmful side effects."); + .addComment("If enabled, many drugs will cause harmful, though curable, carcinogen buildup and genomic damage over time."); el.append(options.render()); -- GitLab