From 9fb1aab29ffaca9a376b75aa1a0067a1b1a9b234 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 16 Apr 2018 13:10:14 -0400 Subject: [PATCH] Fixed arousal limit not being respected --- vore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vore.js b/vore.js index ca88a0f..d961357 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()); } };