Browse Source

Lactation only runs if it is enabled AND breasts are enabled.

tags/v0.7.0
Fen Dweller 7 years ago
parent
commit
77758aba98
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      game.js

+ 1
- 1
game.js View File

@@ -902,7 +902,7 @@ let macro =
this.fillCum(this); this.fillCum(this);
if (this.femaleParts) if (this.femaleParts)
this.fillFemcum(this); this.fillFemcum(this);
if (this.lactationEnabled)
if (this.lactationEnabled && this.hasBreasts)
this.fillBreasts(this); this.fillBreasts(this);
if (this.arousalEnabled) if (this.arousalEnabled)
this.quenchExcess(this); this.quenchExcess(this);


Loading…
Cancel
Save