From 51e868b8c5b67bb97455a24aee6c9c19082c2fc3 Mon Sep 17 00:00:00 2001 From: Blank_Alt <12406-Blank_Alt@users.noreply.gitgud.io> Date: Wed, 26 May 2021 08:02:10 +0000 Subject: [PATCH] hgIgnoreFlaws --- src/facilities/penthouse/HGSelect.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/facilities/penthouse/HGSelect.js b/src/facilities/penthouse/HGSelect.js index 505a6105cc5..02eb06ef2e6 100644 --- a/src/facilities/penthouse/HGSelect.js +++ b/src/facilities/penthouse/HGSelect.js @@ -42,6 +42,8 @@ App.Facilities.HGSelect = function() { r.push(`${HGName} will softern flaws into quirks.`); } else if (V.headGirlOverridesQuirks) { r.push(`${HGName} will override quirks.`); + } else { + r.push(`${HGName} will ignore flaws.`); } links.push(App.UI.DOM.link(" Override quirks", () => { @@ -66,6 +68,14 @@ App.Facilities.HGSelect = function() { [], passage() )); + links.push(App.UI.DOM.link(" Ignore flaws", () => { + V.headGirlTrainsFlaws = 0; + V.headGirlSoftensFlaws = 0; + V.headGirlOverridesQuirks = 0; + }, + [], passage() + )); + r.push(App.UI.DOM.generateLinksStrip(links)); App.Events.addNode(f, r, "div", "indent"); -- GitLab