From 960c39ad89ecfc2e993e5533273af91536681829 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 23 Feb 2018 10:05:14 -0500 Subject: [PATCH] Nulls are no longer stuck at max arousal forever --- game.js | 13 +++++++++++++ stroll.html | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/game.js b/game.js index dc48613..ba65885 100644 --- a/game.js +++ b/game.js @@ -376,6 +376,9 @@ var macro = if (this.femaleParts) { this.femaleOrgasm(this); } + if (!this.maleParts && !this.femaleParts) { + this.nullOrgasm(this); + } } } }, @@ -456,6 +459,16 @@ var macro = } }, + "nullOrgasm": function(self) { + if (!this.arousalEnabled) + return; + + if (this.orgasm) { + this.quench(10); + setTimeout(function() { self.nullOrgasm(self) }, 2000); + } + }, + get description() { result = []; diff --git a/stroll.html b/stroll.html index c482c05..5ed6fe9 100644 --- a/stroll.html +++ b/stroll.html @@ -62,7 +62,7 @@
-
Welcome to Stroll 0.4.3
+
Welcome to Stroll 0.4.4
This game features 18+ content
Changelog
It's a nice day for a walk
@@ -94,7 +94,7 @@
-

Welcome to Stroll 0.4.3

+

Welcome to Stroll 0.4.4

This game features 18+ content

Changelog