From 09ed77928baac501348116a9a0c1e4e5af4f8372 Mon Sep 17 00:00:00 2001 From: Anu <barrychahal@gmail.com> Date: Sun, 13 Sep 2020 01:01:26 -0700 Subject: [PATCH] posses > possesses --- src/npc/descriptions/descriptionWidgets.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/npc/descriptions/descriptionWidgets.js b/src/npc/descriptions/descriptionWidgets.js index d520c628f8d..70d7e429d2f 100644 --- a/src/npc/descriptions/descriptionWidgets.js +++ b/src/npc/descriptions/descriptionWidgets.js @@ -1459,17 +1459,17 @@ App.Desc.geneticQuirkAssessment = function(slave) { } if (slave.geneticQuirks.superfetation === 2) { if (slave.broodmother !== 0) { - r.push(`${He} posses a rare genetic flaw that causes pregnancy to not block ovulation; not that it matters with ${his} broodmother implant superseding it.`); + r.push(`${He} possesses a rare genetic flaw that causes pregnancy to not block ovulation; not that it matters with ${his} broodmother implant superseding it.`); } else if (isFertile(slave)) { - r.push(`${He} posses a rare genetic flaw that causes pregnancy to not block ovulation. ${He} is fully capable of getting pregnant while already pregnant.`); + r.push(`${He} possesses a rare genetic flaw that causes pregnancy to not block ovulation. ${He} is fully capable of getting pregnant while already pregnant.`); } else { - r.push(`${He} posses a rare genetic flaw that causes pregnancy to not block ovulation; not that it matters when ${he} can't get pregnant.`); + r.push(`${He} possesses a rare genetic flaw that causes pregnancy to not block ovulation; not that it matters when ${he} can't get pregnant.`); } } else if (slave.geneticQuirks.superfetation === 1 && V.geneticMappingUpgrade >= 2) { r.push(`${He} is a carrier of a genetic flaw that causes superfetation.`); } if (slave.geneticQuirks.uterineHypersensitivity === 2) { - r.push(`${He} posses a rare genetic trait that causes uterine hypersensitivity;`); + r.push(`${He} possesses a rare genetic trait that causes uterine hypersensitivity;`); if (slave.ovaries === 1 || slave.mpreg === 1) { r.push(`pregnancy and birth will extremely pleasurable to ${him}.`); } else { -- GitLab