From c48c2c77e2baa7dd2bf518a425c6a42593d02a2d Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 21 Dec 2019 19:54:16 -0500 Subject: [PATCH] Remove spurious log --- game.js | 1 - 1 file changed, 1 deletion(-) diff --git a/game.js b/game.js index 64ab091..e06d463 100644 --- a/game.js +++ b/game.js @@ -1346,7 +1346,6 @@ let macro = //macro controls every customizable part of the players body "fillFemcum": function(self) { self.femcumStorage.amount += self.femcumStorage.limit * self.baseFemcumProduction * fillPeriod / 1000; - console.log(self.femcumStorage.limit * self.baseFemcumProduction * fillPeriod / 1000); if (self.femcumStorage.amount > self.femcumStorage.limit) self.arouse(1 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); setTimeout(function () { self.fillFemcum(self); }, fillPeriod);