diff --git a/src/endWeek/player/prMobility.js b/src/endWeek/player/prMobility.js index c4074defd40fe822a41edcfd666e26ed2bb75f7e..dfbef99b90a51eb2bb39b2cdae4f1b7a8070487d 100644 --- a/src/endWeek/player/prMobility.js +++ b/src/endWeek/player/prMobility.js @@ -375,7 +375,7 @@ App.EndWeek.Player.mobility = function(PC = V.PC) { if (PC.belly > (PC.pregAdaptation * 1000)) { r.push(`At least your genetically treated body is raipidly adjusting to your gravidity.`); } - slave.pregAdaptation += 1; + PC.pregAdaptation += 1; } if (PC.wombImplant === "restraint" && PC.belly >= 400000) { r.push(`The mesh implanted into the walls of your uterus is nearing its limit and <span class="health dec">beginning to strangle</span> the organ it is meant to support. While it is still structurally sound, it may fail on you if it is forced to stretch much more.`); diff --git a/src/endWeek/saGetMilked.js b/src/endWeek/saGetMilked.js index f360ccbe75ee7de562e28e63e460a235e6910382..0f52e187ecae579a34dfedb41dfcf5014a02a7a7 100644 --- a/src/endWeek/saGetMilked.js +++ b/src/endWeek/saGetMilked.js @@ -481,7 +481,7 @@ if (slave.vasectomy !== 1 && isVirile(slave)) { if (slave.geneMods.aggressiveSperm === 1) { - r.text += ` ${His} testicles produce oversized, durable sperm cells that are not only diffuclt to ejaculate out en mass, but also tend to clog the tubbing with their density, lowering ${his} overall productivity.`; + r.text += ` ${His} testicles produce oversized, durable sperm cells that are not only diffuclt to ejaculate out en mass, but also tend to clog the tubing with their density, lowering ${his} overall productivity.`; } if (slave.geneMods.livestock === 1) { r.text += ` ${He} has been genetically altered to overproduce sperm.`; diff --git a/src/facilities/geneLab.js b/src/facilities/geneLab.js index 8250c8644c9863f5302d35798330ff0df103c862..b37b1b4ff7eac77e51ec0be2c0adab03bccda753 100644 --- a/src/facilities/geneLab.js +++ b/src/facilities/geneLab.js @@ -35,7 +35,7 @@ App.UI.geneLab = function() { App.UI.DOM.appendNewElement("div", node, `The fabricator is capable of producing treatments to accelerate cellular reproduction.`); } if (V.enhancedProductionFormula === 1) { - App.UI.DOM.appendNewElement("div", node, `The fabricator is capable of producing treatments to permanently enhance the production of harvestable resources from dairy slaves. Side effects include, but are not limited to, increased appetite, weight gain, dehydrationand other complications related to overproduction of fluids.`); + App.UI.DOM.appendNewElement("div", node, `The fabricator is capable of producing treatments to permanently enhance the production of harvestable resources from dairy slaves. Side effects include, but are not limited to, increased appetite, weight gain, dehydration, and other complications related to overproduction of fluids.`); } else if (V.cash >= enhancedProductionFormulaCost) { App.UI.DOM.appendNewElement("div", node, App.UI.DOM.link( "Purchase designs for optimizing dairy slaves", diff --git a/src/npc/descriptions/style/hair.js b/src/npc/descriptions/style/hair.js index 30d7949ad6e6f3e7273f9478919e0fd9ee401d9c..64232d2d66b903ac3d7f47f6ba528a01a6fea675 100644 --- a/src/npc/descriptions/style/hair.js +++ b/src/npc/descriptions/style/hair.js @@ -175,7 +175,7 @@ App.Desc.hair = function(slave) { } else { r.push(`short,`); } - r.push(`${slave.hColor} hair${slave.hEffect === "none" ? `` : ` that is stylized with ${slave.hEffect},`} is truley unique to ${him}.`); + r.push(`${slave.hColor} hair${slave.hEffect === "none" ? `` : ` that is stylized with ${slave.hEffect},`} is truly unique to ${him}.`); break; default: r.push(`${slave.hColor} hair${slave.hEffect === "none" ? `` : `, that is stylized with ${slave.hEffect},`} is ${slave.hStyle} and`); diff --git a/src/player/desc/pLongButt.js b/src/player/desc/pLongButt.js index 470f26bd28a09f5c248e1cbfe5d18a240d0b0800..1b885dcc24f42682de41222a0b3b2319d8c197c0 100644 --- a/src/player/desc/pLongButt.js +++ b/src/player/desc/pLongButt.js @@ -378,7 +378,7 @@ App.Desc.Player.butt = function(PC = V.PC) { if (canGetPregnant(PC)) { r.push(`Your body is just wasting eggs at this point; menopause will be upon you before you realize it unless you get yourself pregnant.`); } else if (PC.preg > 0 && PC.pregKnown && V.dangerousPregnancy === 1) { - r.push(`According to the data, it shouldn't be possive for you to prematurely give birth.`); + r.push(`According to the data, it shouldn't be possible for you to prematurely give birth.`); } } if (PC.ovaImplant !== 0) { diff --git a/src/player/desc/pLongCrotch.js b/src/player/desc/pLongCrotch.js index e6b7bd2bd4505a4f299e13c89b376978a134ac50..ddea77aad0add93193b7f322e067946b89be5c21 100644 --- a/src/player/desc/pLongCrotch.js +++ b/src/player/desc/pLongCrotch.js @@ -1348,7 +1348,7 @@ App.Desc.Player.crotch = function(PC = V.PC) { if (canGetPregnant(PC)) { r.push(`Your body is just wasting eggs at this point; menopause will be upon you before you realize it unless you put your womb to work.`); } else if (PC.preg > 0 && PC.pregKnown && V.dangerousPregnancy === 1) { - r.push(`According to the data, it shouldn't be possive for you to prematurely give birth.`); + r.push(`According to the data, it shouldn't be possible for you to prematurely give birth.`); } } if (PC.ovaImplant !== 0) {