From e623c563e8a1862f1be8d127ad7a2965484bca00 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 20 May 2018 08:06:40 -0400 Subject: [PATCH] Fixed urethra stretch name --- game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.js b/game.js index c82c2a5..8a2c9dd 100644 --- a/game.js +++ b/game.js @@ -972,13 +972,13 @@ let macro = "pissEnabled": true, "pissScale": 1, "baseUrethraDiameter": 0.03, - "urethraStretch": 5, + "urethraStretchiness": 5, get urethraDiameter() { return this.scaling(this.baseUrethraDiameter, this.scale, 1); }, get urethraStretchDiameter() { - return this.urethraDiameter * this.urethraStretch; + return this.urethraDiameter * this.urethraStretchiness; }, get urethraStretchArea() { return (this.urethraStretchDiameter * this.urethraStretchDiameter / 4) * Math.PI;