diff --git a/src/Mods/SecExp/js/securityReport.js b/src/Mods/SecExp/js/securityReport.js index 4e4965936c5151e18916bebc87bc04d6129e1514..7d80e67f6acccf8f4116e6d5ce1704f60bf14aad 100644 --- a/src/Mods/SecExp/js/securityReport.js +++ b/src/Mods/SecExp/js/securityReport.js @@ -55,13 +55,13 @@ App.Mods.SecExp.securityReport = function(oldACitizens) { r.push(`The extremely high number of residents makes their job a lot harder.`); secGrowth -= 2; } - if (V.SecExp.core.security == 3) { + if (V.SecExp.edicts.weaponsLaw == 3) { r.push(`The completely free flow of weapons in your arcology makes security quite a bit more challenging.`); secGrowth -= 1,5; - } else if (V.SecExp.core.security == 2) { + } else if (V.SecExp.edicts.weaponsLaw == 2) { r.push(`The somewhat lax flow of weapons makes securing ${V.arcologies[0].name} moderately harder.`); secGrowth -= 1; - } else if (V.SecExp.core.security == 1) { + } else if (V.SecExp.edicts.weaponsLaw == 1) { r.push(`The restrictive nature of your weapon laws leaves few instances of violent crime that security has to deal with.`); secGrowth = 0; } else { diff --git a/src/endWeek/reports/spaReport.js b/src/endWeek/reports/spaReport.js index 804768e12af2eb22c834d054b5a6fed9c0b26a53..89d0ce00b63451843bf1c4d1b9152919d1c9813a 100644 --- a/src/endWeek/reports/spaReport.js +++ b/src/endWeek/reports/spaReport.js @@ -305,7 +305,7 @@ App.EndWeek.spaReport = function() { if (S.Attendant) { const slave = App.SlaveAssignment.reportSlave(S.Attendant); tired(slave); - if (isFertile(slave) && slave.preg !== -1 && App.EndWeek.saVars.poolJizz > (canSee(S.Attendant) ? 5000 : 1000)) { // Free swimming sperm do not respect chastity and the Attendant can not avoid going in the pool. + if (isFertile(slave) && slave.preg !== -1 && App.EndWeek.saVars.poolJizz > (canSee(S.Attendant) ? 5000 : 1000)) { // Free swimming sperm do not respect chastity and the Attendant cannot avoid going in the pool. const spermAtt = weightedRandom(App.EndWeek.saVars.poolJizzers); if (canBreed(slave, getSlave(spermAtt.ID))) { knockMeUp(slave, 25, 2, spermAtt.ID); diff --git a/src/endWeek/saSharedVariables.js b/src/endWeek/saSharedVariables.js index 79c9462c8fac022ad9f7dd50355bbfcd99d3fe78..c982d402d25aa50cec20994927942fbb1a55d995 100644 --- a/src/endWeek/saSharedVariables.js +++ b/src/endWeek/saSharedVariables.js @@ -22,9 +22,9 @@ App.EndWeek.SASharedVariables = class { this.whorePriceAdjustment = {}; /** How many slaves can the designated stud still impregnate? */ this.StudCum = 0; - /** Are slaves with the agressive sperm gene mod jacking off or having sex in the spa pool? */ + /** Are slaves with the aggressive sperm gene mod jacking off or having sex in the spa pool? */ this.poolJizz = 0; - /** Which agressive sperm slaves are knocking up the spa bathers? */ + /** Which aggressive sperm slaves are knocking up the spa bathers? */ this.poolJizzers = []; /** How much energy does the player have left to fuck slaves who need it? */ this.freeSexualEnergy = 0; diff --git a/src/player/desc/pLongBelly.js b/src/player/desc/pLongBelly.js index d286a0e638ef361af165bdd4a55bc94470537f95..2abd50c54d75eeb020b280dcbc97baad7aa7432a 100644 --- a/src/player/desc/pLongBelly.js +++ b/src/player/desc/pLongBelly.js @@ -1614,7 +1614,7 @@ App.Desc.Player.belly = function(PC = V.PC) { r.push(`You're far enough along at this point that it's in your best interest to stay in the nest and wait things out instead of risking going to labor at an inopportune time.`); } if (PC.geneMods.rapidCellGrowth !== 1 && PC.bellyPreg >= 100000 && PC.belly > (PC.pregAdaptation * 3200) && (PC.bellyPreg >= 500000 || PC.wombImplant !== "restraint")) { - r.push(`You are undergoing a <span class="red">very high risk pregnancy,</span> so to decrease the likelyhood of ${V.seeExtreme === 1 && V.dangerousPregnancy === 1 ? "abdominal rupture" : "your water breaking early"}, you have been placed on medical bed rest.`); + r.push(`You are undergoing a <span class="red">very high risk pregnancy,</span> so to decrease the probability of ${V.seeExtreme === 1 && V.dangerousPregnancy === 1 ? "abdominal rupture" : "your water breaking early"}, you have been placed on medical bed rest.`); } else if (PC.bellyPreg > PC.pregAdaptation * 1000 && PC.bellyPreg < PC.pregAdaptation * 2200 && PC.geneMods.progenitor !== 1) { r.push(`You are undergoing a <span class="red">high risk pregnancy,</span> so taking things easy is probably a good idea.`); }