From cdda54bb5596714d6626e53667d522afc232dfca Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 3 Feb 2019 10:39:59 -0500 Subject: [PATCH] Larger spurts --- game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.js b/game.js index 0526c10..7380996 100644 --- a/game.js +++ b/game.js @@ -1445,7 +1445,7 @@ let macro = if (spurt == this.cumVolume) { let excess = this.cumStorage.amount - this.cumVolume; - spurt += excess / 5; + spurt += excess * 3 / 4; } this.cumStorage.amount -= spurt; male_orgasm(spurt, false); @@ -1462,7 +1462,7 @@ let macro = if (spurt == this.femcumVolume) { let excess = this.femcumStorage.amount - this.femcumVolume; - spurt += excess / 5; + spurt += excess * 3 / 4; } this.femcumStorage.amount -= spurt;