Skip to content
Snippets Groups Projects
Commit 5083022d authored by Blank_Alt's avatar Blank_Alt Committed by Pregmodder
Browse files

Fix-AggressiveWardeness

parent 2b1cd165
No related branches found
No related tags found
1 merge request!10058Fix-AggressiveWardeness
......@@ -32,6 +32,10 @@ To play open FC_pregmod.html in bin/ (Recommendation: Drag it into incognito mod
## Common problems
* If compiling takes a while or causes a noticeable increase in system resource utilisation.
- It might be worth checking your main Antivirus (AV) settings.
- If it is Windows Defender (currently tested with Windows 10): Start menu -> Windows Security -> Virus & threat protection -> Virus & threat protection settings -> Manage settings -> Exclusions (near the bottom) -> Add or remove exclusions -> Add an exclusion -> path to bin/.
* `sessionStorage quota exceeded` / `localStorage quota exceeded` or something similar
- Your saves stored inside the browser are getting too large. There are multiple ways to solve this:
1. Delete saves stored in the browser. If you want to keep them, save them to disk first.
......
......@@ -271,8 +271,7 @@ App.EndWeek.arcadeReport = function() {
milkProfits += milk(slave);
slave.boobs += boobGrowth(slave);
if (
(slave.balls > 0) &&
(slave.balls < 10) &&
slave.balls.isBetween(0, 10) &&
(random(1, 100) > (40 + (10 * (slave.balls + (2 * slave.geneMods.NCS)))))
) {
slave.balls++;
......
......@@ -29,7 +29,8 @@ App.Events.petsAggressiveWardeness = class petsAggressiveWardeness extends App.E
App.Events.addParagraph(node, [
`As you pass the entrance to the hall of cells where`,
App.UI.DOM.slaveDescriptionDialog(S.Wardeness),
`breaks bitches late one night, you hear some muffled cursing, followed by moans. Curious, you lean into the one cell with an open door and are treated to the sight of ${S.Wardeness.slaveName} holding ${contextualIntro(S.Wardeness, subSlave, true)}'s head`
`breaks bitches late one night, you hear some muffled cursing, followed by moans. Curious, you lean into the one cell with an open door and are treated to the sight of ${S.Wardeness.slaveName} holding`,
App.UI.DOM.combineNodes(contextualIntro(S.Wardeness, subSlave, "DOM"), `'s head`)
]);
App.Events.addParagraph(node, [`${hasBothLegs(S.Wardeness) ? `between ${his} legs` : `at ${his} groin`}, receiving what is very obviously non-consensual oral sex. ${S.Wardeness.slaveName} is clearly enjoying ${himself}, but gathers ${himself} together and greets you properly, without stopping.`]);
......
......@@ -57,11 +57,11 @@ App.Intro.economyIntro = function() {
r.push(`All the things you need to run your arcology are getting more expensive`);
if (V.incomeMod === 0) {
r.push(`while all forms of income`);
//<span style="font-weight:Bold">remain static</span>. [[Easier|Economy Intro][V.incomeRate = 1]]
//<span style="font-weight:Bold">remain static.</span> [[Easier|Economy Intro][V.incomeRate = 1]]
} else if (V.incomeMod === 1) {
r.push(`while all forms of income <span style="font-weight:Bold">rise but cannot keep pace</span>. [[Easier|Economy Intro][${V.incomeRate} = 2]] | [[Harder|Economy Intro][V.incomeRate = 0]]`);
r.push(`while all forms of income <span style="font-weight:Bold">rise but cannot keep pace.</span> [[Easier|Economy Intro][${V.incomeRate} = 2]] | [[Harder|Economy Intro][V.incomeRate = 0]]`);
} else {
r.push(`but luckily all forms of income <span style="font-weight:Bold">rise in lockstep</span>. [[Harder|Economy Intro][${V.incomeRate} = 1]]`);
r.push(`but luckily all forms of income <span style="font-weight:Bold">rise in lockstep.</span> [[Harder|Economy Intro][${V.incomeRate} = 1]]`);
}
//</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment