From df3bbbfadd210e03eeb02a0a766c65b27383d1af Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 19 Feb 2018 22:25:42 -0500 Subject: [PATCH] Halved volume for femcum. Fixed hilarious negative arousal bug --- game.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game.js b/game.js index a667a1c..c040cfa 100644 --- a/game.js +++ b/game.js @@ -76,7 +76,7 @@ var macro = get vaginaLength() { return this.scaling(this.baseVaginaLength * this.vaginaScale, this.scale, 1); }, get vaginaWidth() { return this.scaling(this.baseVaginaWidth * this.vaginaScale, this.scale, 1); }, get vaginaArea() { return this.vaginaLength * this.vaginaWidth }, - get vaginaVolume() { return this.vaginaArea * this.vaginaLength }, + get vaginaVolume() { return this.vaginaArea * this.vaginaWidth }, "femcumRatio": 0.1, "femcumScale": 1, get femcumVolume() { @@ -227,7 +227,7 @@ var macro = "fillCum": function(self) { self.cumStorage.amount += self.ballVolume / 30; if (self.cumStorage.amount > self.cumStorage.limit) - self.arouse(10 * (1 - self.cumStorage.amount / self.cumStorage.limit)); + self.arouse(10 * (self.cumStorage.amount / self.cumStorage.limit - 1)); setTimeout(function () { self.fillCum(self) }, 1000); update(); }, @@ -235,7 +235,7 @@ var macro = "fillFemcum": function(self) { self.femcumStorage.amount += self.vaginaVolume / 30; if (self.femcumStorage.amount > self.femcumStorage.limit) - self.arouse(10 * (self.femcumStorage.amount / self.femcumStorage.limit)); + self.arouse(10 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); setTimeout(function () { self.fillFemcum(self) }, 1000); update(); },