From b7a8c967d9f12d80f8980534665c37b9340c5ac9 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 16 Nov 2020 15:29:43 -0500 Subject: [PATCH] fix --- src/gui/options/optionsPassage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/options/optionsPassage.js b/src/gui/options/optionsPassage.js index d69867d37f8..66e5164b9a9 100644 --- a/src/gui/options/optionsPassage.js +++ b/src/gui/options/optionsPassage.js @@ -397,7 +397,7 @@ App.UI.optionsPassage = function() { _options.addOption("Child gender to be generated based off dick content settings", "seeDicksAffectsPregnancy") .addValue("Enabled", 1).on().addValue("Disabled", 0).off() - .addComment("if (V.seeDicksAffectsPregnancy === 1;Currently <<print V.seeDicks;% of children will be born male. }Will not affect existing pregnancies already in-game."); + .addComment(`${(V.seeDicksAffectsPregnancy === 1) ? `Currently ${V.seeDicks}% of children will be born male. ` : ``}Will not affect existing pregnancies already in-game.`); if (V.seeDicksAffectsPregnancy === 0) { _options.addOption("XX slaves only father daughters", "adamPrinciple") -- GitLab