From 84bf07f0371ded65c0baf3354fda76b2e5009a34 Mon Sep 17 00:00:00 2001 From: Blank_Alt <12406-Blank_Alt@users.noreply.gitgud.io> Date: Thu, 20 May 2021 01:49:19 +0000 Subject: [PATCH] Fixes pool --- src/events/RE/reNickname.js | 2 +- src/events/nonRandomEvent.js | 6 +++--- src/facilities/incubator/incubatorInteract.js | 1 + src/facilities/surgery/surgeryPassageStructural.js | 2 +- src/gui/Encyclopedia/encyclopediaBeingInCharge.js | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/events/RE/reNickname.js b/src/events/RE/reNickname.js index 5db2cfcb7fe..cbf2cc4f0eb 100644 --- a/src/events/RE/reNickname.js +++ b/src/events/RE/reNickname.js @@ -1650,7 +1650,7 @@ App.Events.RENickname = class RENickname extends App.Events.BaseEvent { nicknameArray = ["Barely Legal"]; } } - situationDesc = `is yet underage by old world standards, and some older slaves do not let ${him} forget that.`; + situationDesc = `is still considered underage by old world standards, and some older slaves do not let ${him} forget that.`; applyDesc = `understands that far from being a mockery, your sanction has turned an intended insult into a reference to the appeal of ${his} years.`; notApplyDesc = `understands that despite ${his} young age ${he} must do ${his} best to fuck like the most veteran of whores.`; diff --git a/src/events/nonRandomEvent.js b/src/events/nonRandomEvent.js index 279e9a13162..030f53b0079 100644 --- a/src/events/nonRandomEvent.js +++ b/src/events/nonRandomEvent.js @@ -151,13 +151,13 @@ App.Events.playNonrandomEvent = function() { const clearEvent = () => { V.event = null; }; if (V.event instanceof App.Events.BaseEvent) { - // we've deserialized a saved game with an event active, or a cheater has picked one, so just play it immediately + // we've deserialized a saved game with an event active, or a player has picked one, so just play it immediately V.event.execute(d); V.passageSwitchHandler = clearEvent; } else { - if (V.debugMode > 0 && V.debugModeEventSelection) { + if (V.debugMode > 0 && V.debugModeEventSelection > 0) { V.nextButton = "Refresh"; - // show all the scheduled, nonrandom, and queued events, and allow the cheater to play them in any order and skip the remainder + // show all the scheduled, nonrandom, and queued events, and allow the player to play them in any order and skip the remainder App.UI.DOM.appendNewElement("h2", d, "Scheduled and Nonrandom Events"); App.UI.DOM.appendNewElement("div", d, "These scheduled and nonrandom events still need to play this week, in this order."); App.UI.DOM.appendNewElement("div", d, "WARNING: playing certain scheduled events out of order, or skipping them, can break your game! Be careful!", ["note", "warning"]); diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js index 9b57a3fe331..d5b12f2cf04 100644 --- a/src/facilities/incubator/incubatorInteract.js +++ b/src/facilities/incubator/incubatorInteract.js @@ -1566,6 +1566,7 @@ App.UI.incubator = function() { function refresh() { jQuery(settingsContent).empty().append(tankSettings()); jQuery(introSpan).empty().append(intro()); + jQuery(tanksContent).empty().append(tankBabies()); } } diff --git a/src/facilities/surgery/surgeryPassageStructural.js b/src/facilities/surgery/surgeryPassageStructural.js index ec79ab27381..d8e9f58d21d 100644 --- a/src/facilities/surgery/surgeryPassageStructural.js +++ b/src/facilities/surgery/surgeryPassageStructural.js @@ -236,7 +236,7 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) { } else if (slave.heightImplant >= 1) { if (slave.height < (Height.mean(slave) + 15) && V.surgeryUpgrade === 1) { linkArray.push(makeLink( - "Advanced height gain surger", + "Advanced height gain surgery", "height", increaseHeight )); diff --git a/src/gui/Encyclopedia/encyclopediaBeingInCharge.js b/src/gui/Encyclopedia/encyclopediaBeingInCharge.js index 1ecaad5891f..a8c11fcbbd9 100644 --- a/src/gui/Encyclopedia/encyclopediaBeingInCharge.js +++ b/src/gui/Encyclopedia/encyclopediaBeingInCharge.js @@ -138,7 +138,7 @@ App.Encyclopedia.addArticle("Rules Assistant", function() { r = []; r.push(App.Encyclopedia.topic("Applying a rule to specific assignments")); - r.push("You can apply a rule only to slaves on individual assignments by selecting them under <span class='encyclopedia interaction'>Apply to assignments</span>. For example a rule can give aphrodisiacs to slaves on whoring assignments. <span class='note'>This is mutually exclusive to automatically giving an assignment to slaves.</span>"); + r.push("You can apply a rule only to slaves on individual assignments by selecting them under <span class='encyclopedia interaction'>Apply to assignments.</span> For example a rule can give aphrodisiacs to slaves on whoring assignments. <span class='note'>This is mutually exclusive to automatically giving an assignment to slaves.</span>"); App.Events.addParagraph(f, r); r = []; -- GitLab