diff --git a/feast.js b/feast.js index 835e899..02ee403 100644 --- a/feast.js +++ b/feast.js @@ -257,7 +257,7 @@ function updateDisplay() { document.getElementById("stat-str").innerHTML = "Str: " + player.str; document.getElementById("stat-dex").innerHTML = "Dex: " + player.dex; document.getElementById("stat-con").innerHTML = "Con: " + player.con; - document.getElementById("stat-arousal").innerHTML = "Arousal: " + round(player.arousal,0) + "/" + player.arousalLimit(); + document.getElementById("stat-arousal").innerHTML = "Arousal: " + round(player.arousal,0) + "/" + round(player.arousalLimit(),0); document.getElementById("stat-stomach").innerHTML = "Stomach: " + round(player.stomach.fullness(),0) + "/" + player.stomach.capacity; if (player.prefs.pred.anal || player.prefs.scat) document.getElementById("stat-bowels").innerHTML = "Bowels: " + round(player.bowels.fullness(),0) + "/" + player.bowels.capacity; diff --git a/objects.js b/objects.js index 3ca361d..57e2688 100644 --- a/objects.js +++ b/objects.js @@ -111,7 +111,7 @@ function Bed() { this.actions.push({ "name": "Whack off", "action": function() { - player.arousal = 100; + player.arousal = player.arousalLimit(); advanceTime(240); } }); diff --git a/vore.js b/vore.js index ca88a0f..8395598 100644 --- a/vore.js +++ b/vore.js @@ -186,7 +186,7 @@ function Player(name = "Player") { this.arousal += this.arousalRate * this.womb.fullnessPercent(); this.arousal += this.arousalRate * this.breasts.fullnessPercent(); - if (this.arousal > 100) { + if (this.arousal >= this.arousalLimit()) { update(this.orgasm()); } };