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 @@