From 77758aba980ffacfaca221a9edafc60a6b100ce5 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 1 Apr 2018 16:11:51 -0400 Subject: [PATCH] Lactation only runs if it is enabled AND breasts are enabled. --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index dd778f7..0a3aed4 100644 --- a/game.js +++ b/game.js @@ -902,7 +902,7 @@ let macro = this.fillCum(this); if (this.femaleParts) this.fillFemcum(this); - if (this.lactationEnabled) + if (this.lactationEnabled && this.hasBreasts) this.fillBreasts(this); if (this.arousalEnabled) this.quenchExcess(this);