From a9b28c4c26601717bd8e857d330d413a748122cb Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 18 Mar 2018 23:01:10 -0400 Subject: [PATCH] Storage multiplier no longer affects fill rate --- game.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/game.js b/game.js index fd45f93..9102aae 100644 --- a/game.js +++ b/game.js @@ -918,7 +918,7 @@ let macro = "femaleParts": true, "fillCum": function(self) { - self.cumStorage.amount += self.cumScale * self.cumStorage.limit / 1200; + self.cumStorage.amount += self.cumScale * self.cumStorage.limit / self.cumStorageScale / 1200; if (self.cumStorage.amount > self.cumStorage.limit) self.arouse(1 * (self.cumStorage.amount / self.cumStorage.limit - 1)); setTimeout(function () { self.fillCum(self); }, 100); @@ -926,7 +926,7 @@ let macro = }, "fillFemcum": function(self) { - self.femcumStorage.amount += self.femcumScale * self.femcumStorage.limit / 1200; + self.femcumStorage.amount += self.femcumScale * self.femcumStorage.limit / self.femcumStorageScale / 1200; if (self.femcumStorage.amount > self.femcumStorage.limit) self.arouse(1 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); setTimeout(function () { self.fillFemcum(self); }, 100); @@ -937,7 +937,7 @@ let macro = if (self.milkStorage.amount > self.milkStorage.limit) { breast_milk(self.milkStorage.amount - self.milkStorage.limit); } - self.milkStorage.amount += self.lactationScale * self.milkStorage.limit / 1200; + self.milkStorage.amount += self.lactationScale * self.milkStorage.limit / self.milkStorageScale / 1200; if (self.milkStorage.amount > self.milkStorage.limit) { self.milkStorage.amount = self.milkStorage.limit; @@ -947,7 +947,7 @@ let macro = }, "fillGas": function(self) { - self.gasStorage.amount += self.gasScale * self.gasStorage.limit / 3600; + self.gasStorage.amount += self.gasScale * self.gasStorage.limit / self.gasStorageScale / 3600; let ratio = self.gasStorage.amount / self.gasStorage.limit; @@ -985,7 +985,7 @@ let macro = }, "fillPiss": function(self) { - self.pissStorage.amount += self.pissScale * self.pissStorage.limit / 1200; + self.pissStorage.amount += self.pissScale * self.pissStorage.limit / self.pissStorageScale / 1200; if (self.pissStorage.amount > self.pissStorage.limit * 2) piss(self.pissStorage.amount); setTimeout(function () { self.fillPiss(self); }, 100); @@ -993,7 +993,7 @@ let macro = }, "fillScat": function(self) { - self.scatStorage.amount += self.scatScale * self.scatStorage.limit / 100; + self.scatStorage.amount += self.scatScale * self.scatStorage.limit / self.scatStorageScale / 100; if (self.scatStorage.amount > self.scatStorage.limit * 2) scat(self.scatStorage.amount); setTimeout(function () { self.fillScat(self); }, 100);