From 979745dc6f9a11a7cd11c0972b4cfbd8a2848d04 Mon Sep 17 00:00:00 2001 From: None <None> Date: Fri, 5 Apr 2024 19:43:43 -0400 Subject: [PATCH] Fixed past participles. --- js/003-data/playerData.js | 2 +- src/endWeek/player/prInflation.js | 2 +- src/endWeek/reports/personalAttention.js | 2 +- src/events/REFS/refsNeoImperialistFeast.js | 2 +- src/npc/interaction/slaveOnSlaveFeeding/fSlaveFeed.js | 2 +- src/player/js/PlayerState.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/js/003-data/playerData.js b/js/003-data/playerData.js index 096abdf6930..12e5cf6d266 100644 --- a/js/003-data/playerData.js +++ b/js/003-data/playerData.js @@ -8,7 +8,7 @@ App.Data.player = { ], [1, { - name: `Drank`, + name: `Drunk`, suggestions: new Set(["whiskey", "rum", "wine", "sake", "vodka", "beer", "bourbon", "scotch"]) } ], diff --git a/src/endWeek/player/prInflation.js b/src/endWeek/player/prInflation.js index 2bf3a8b4dcc..e7bac54a07f 100644 --- a/src/endWeek/player/prInflation.js +++ b/src/endWeek/player/prInflation.js @@ -163,7 +163,7 @@ App.EndWeek.Player.inflation = function(PC = V.PC) { } else if (PC.inflationMethod === 2) { r.push(`You fill your rear with nearly`); } else if (PC.inflationMethod === 3) { - r.push(`You suckle from ${cow.slaveName} until you've drank nearly`); + r.push(`You suckle from ${cow.slaveName} until you've drunk nearly`); cow.lactationDuration = 2; cow.boobs -= cow.boobsMilk; cow.boobsMilk = 0; diff --git a/src/endWeek/reports/personalAttention.js b/src/endWeek/reports/personalAttention.js index e1e92792237..8059cc8bfb0 100644 --- a/src/endWeek/reports/personalAttention.js +++ b/src/endWeek/reports/personalAttention.js @@ -1656,7 +1656,7 @@ App.PersonalAttention.slaveReport = function(slave) { } else { r.push(`forces you back to the ground`); if (slave.lactation > 0) { - r.push(`before pushing a milky nipple into your mouth. Soon your libido has you sucking away, oblivious to ${him} playing with ${himself} while enjoying the release. ${He} sneaks off once ${he} feels you've drank as much of ${his} milk as you can handle.`); + r.push(`before pushing a milky nipple into your mouth. Soon your libido has you sucking away, oblivious to ${him} playing with ${himself} while enjoying the release. ${He} sneaks off once ${he} feels you've drunk as much of ${his} milk as you can handle.`); slave.boobs -= slave.boobsMilk; slave.boobsMilk = 0; slave.lactationDuration = 2; diff --git a/src/events/REFS/refsNeoImperialistFeast.js b/src/events/REFS/refsNeoImperialistFeast.js index 32bfcf9acf2..84367c24397 100644 --- a/src/events/REFS/refsNeoImperialistFeast.js +++ b/src/events/REFS/refsNeoImperialistFeast.js @@ -66,7 +66,7 @@ App.Events.refsNeoImperialistFeast = class refsNeoImperialistFeast extends App.E function moderate() { cashX(-moderateCash, "event"); repX(2000, "event"); - return `There's no special cause for celebration this time around, but that doesn't mean you can't have a great time. You lay out platters of expensive food and drink, served by gorgeous maids, for the arriving Barons and Knights, who seem universally pleased to have an opportunity to forget the troubles of rulership and power for a day – not that that's particularly difficult in the Free Cities, anyway. Among the roaring company of ${V.arcologies[0].name}'s wealthiest and most influential citizens, you tear into fresh-cooked meats and the rounded asses of the servants alike, in a glorious celebration where nothing and no one is off-limits. At the end of the evening, when the crowd has finally had their fill and you've fucked and drank enough that you can barely stand to wave them goodbye, nearly each and every Baron leaves the celebration with a <span class="reputation inc">stupid, drunken smile across their face.</span>`; + return `There's no special cause for celebration this time around, but that doesn't mean you can't have a great time. You lay out platters of expensive food and drink, served by gorgeous maids, for the arriving Barons and Knights, who seem universally pleased to have an opportunity to forget the troubles of rulership and power for a day – not that that's particularly difficult in the Free Cities, anyway. Among the roaring company of ${V.arcologies[0].name}'s wealthiest and most influential citizens, you tear into fresh-cooked meats and the rounded asses of the servants alike, in a glorious celebration where nothing and no one is off-limits. At the end of the evening, when the crowd has finally had their fill and you've fucked and drunk enough that you can barely stand to wave them goodbye, nearly each and every Baron leaves the celebration with a <span class="reputation inc">stupid, drunken smile across their face.</span>`; } function refuse() { diff --git a/src/npc/interaction/slaveOnSlaveFeeding/fSlaveFeed.js b/src/npc/interaction/slaveOnSlaveFeeding/fSlaveFeed.js index 46b4f9e4227..77c8f9d35dc 100644 --- a/src/npc/interaction/slaveOnSlaveFeeding/fSlaveFeed.js +++ b/src/npc/interaction/slaveOnSlaveFeeding/fSlaveFeed.js @@ -185,7 +185,7 @@ globalThis.FSlaveFeed = function(slave, milkTap) { } else if (milkTap.devotion >= -20) { r.push(`Since ${milkTap.slaveName} does not resist your will, ${he2} should comply reasonably well. If anything, ${he}'ll at least be thankful to be relieved of some pressure.`); } else { - r.push(`Since ${milkTap.slaveName} is unlikely to comply willingly, you simply restrain ${him2} with ${his2} tits exposed and ready to be drank from.`); + r.push(`Since ${milkTap.slaveName} is unlikely to comply willingly, you simply restrain ${him2} with ${his2} tits exposed and ready to be drunk from.`); if (milkTap.lactation > 1) { r.push(`You affix nipple clamps to ${his2} ${milkTap.nipples} nipples and step back to watch ${his2} breasts back up with milk. When ${he2} is unclamped, the flow should certainly be strong enough for your desires.`); } else { diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js index dabcb520c60..f77ab4a3f29 100644 --- a/src/player/js/PlayerState.js +++ b/src/player/js/PlayerState.js @@ -255,7 +255,7 @@ App.Entity.PlayerState = class PlayerState { /** * * The method of consumption of .refreshment * * 0: smoked - * * 1: drank + * * 1: drunk * * 2: eaten * * 3: snorted * * 4: injected -- GitLab