From 3eec399dc818d375924f07bd4c0d3944160b817c Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Thu, 1 Sep 2022 22:56:16 -0400 Subject: [PATCH] fix --- src/endWeek/economics/persBusiness.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/endWeek/economics/persBusiness.js b/src/endWeek/economics/persBusiness.js index cd5db5f0c91..ad5172e4019 100644 --- a/src/endWeek/economics/persBusiness.js +++ b/src/endWeek/economics/persBusiness.js @@ -548,7 +548,7 @@ App.EndWeek.personalBusiness = function() { } */ - if (!onBedRest(V.PC, true) && V.PC.dick < -4000) { // Impossible condition to prevent scope creep. Need to finish this later, not right now. + if (V.PC.actualAge > 3) { // Always true for now. Need to finish this later, using the following as the condition. (!onBedRest(V.PC, true)) let oldSkill; switch (V.personalAttention.task) { case PersonalAttention.TRADE: -- GitLab