From 4dc495622d69295d514739009ec84f3bc31d529d Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 7 Jan 2020 17:27:34 -0500 Subject: [PATCH] Weaken the fill a bit --- game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.js b/game.js index 81d3840..c4a47dd 100644 --- a/game.js +++ b/game.js @@ -4378,10 +4378,10 @@ function magic_fill_sexual() { function macro_fill_sexual_execute(remaining, max) { if (macro.maleParts) { - macro.cumStorage.amount += macro.cumStorage.limit * 0.03 * remaining / max; + macro.cumStorage.amount += macro.cumStorage.limit * 0.02 * remaining / max; } if (macro.femaleParts) { - macro.femcumStorage.amount += macro.femcumStorage.limit * 0.03 * remaining / max; + macro.femcumStorage.amount += macro.femcumStorage.limit * 0.02 * remaining / max; } if (remaining > 0) {