Browse Source

Nulls are no longer stuck at max arousal forever

tags/v0.7.0
Fen Dweller 7 years ago
parent
commit
960c39ad89
2 changed files with 15 additions and 2 deletions
  1. +13
    -0
      game.js
  2. +2
    -2
      stroll.html

+ 13
- 0
game.js View File

@@ -376,6 +376,9 @@ var macro =
if (this.femaleParts) { if (this.femaleParts) {
this.femaleOrgasm(this); 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() { get description() {
result = []; result = [];


+ 2
- 2
stroll.html View File

@@ -62,7 +62,7 @@
</div> </div>
<div id=log-area> <div id=log-area>
<div id=log> <div id=log>
<div>Welcome to Stroll 0.4.3</div>
<div>Welcome to Stroll 0.4.4</div>
<div><b>This game features 18+ content</b></div> <div><b>This game features 18+ content</b></div>
<div><a href="https://chemicalcrux.org/stroll">Changelog</a></div> <div><a href="https://chemicalcrux.org/stroll">Changelog</a></div>
<div>It's a nice day for a walk</div> <div>It's a nice day for a walk</div>
@@ -94,7 +94,7 @@




<div class=option-container id=option-panel> <div class=option-container id=option-panel>
<p>Welcome to Stroll 0.4.3</p>
<p>Welcome to Stroll 0.4.4</p>
<p><b>This game features 18+ content</b></p> <p><b>This game features 18+ content</b></p>
<a href="https://chemicalcrux.org/stroll">Changelog</a> <a href="https://chemicalcrux.org/stroll">Changelog</a>
<br> <br>


Loading…
Cancel
Save