diff --git a/src/endWeek/player/prDiet.js b/src/endWeek/player/prDiet.js index 99ebd908ae57c95358474af7abc0b6be72bea2b7..b597b57253c29152e473e68ce42078396320b4b1 100644 --- a/src/endWeek/player/prDiet.js +++ b/src/endWeek/player/prDiet.js @@ -175,7 +175,7 @@ App.EndWeek.Player.diet = function(PC = V.PC) { roll = 200; target = Math.trunc(Math.clamp(weightShift * 2 + (boobSize - growthGoal) / 20, 0, 68)); } - if (random(1, roll) <= target && gigantomastiaMod !== 3 && boobSize >= 100) { + if (random(1, roll) <= target && gigantomastiaMod !== 3 && boobSize > 100) { r.push(`<span class="change negative">Your chest has gotten a little smaller.</span>`); if (random(1, 2) === 1) { PC.boobs -= 20; @@ -369,7 +369,7 @@ App.EndWeek.Player.diet = function(PC = V.PC) { r.push(`Your balls feel heavy and full; further inspection reveals they've <span class="change positive">grown</span> under your diet.`); PC.balls += 1; } - if ((PC.geneMods.NCS === 0 && boobSize > 400- (V.feeder * 100)) || (PC.geneMods.NCS === 1 && boobSize > 200) && gigantomastiaMod !== 3) { + if ((PC.geneMods.NCS === 0 && boobSize > 400 - (V.feeder * 100)) || (PC.geneMods.NCS === 1 && boobSize > 200) && gigantomastiaMod !== 3) { r.push(`Your chest <span class="change negative">slims down slightly.</span>`); PC.boobs -= 10; if (PC.geneMods.NCS === 1) { @@ -788,7 +788,7 @@ App.EndWeek.Player.diet = function(PC = V.PC) { roll = 75; target = Math.trunc(Math.clamp(weightMod * 2 + (boobSize - growthGoal) / 20, 0, 68)); } - if (random(1, roll) <= target && (gigantomastiaMod !== 3 && boobSize >= 100)) { + if (random(1, roll) <= target && (gigantomastiaMod !== 3 && boobSize > 100)) { if (random(1, 2) === 1) { r.push(`<span class="change negative">Your chest has gotten smaller.</span>`); PC.boobs -= 100;