From 26d1a845bb46b1ce39c5f1cb5843ea08772f430c Mon Sep 17 00:00:00 2001 From: kinkhorse Date: Thu, 14 Jun 2018 19:55:27 -0700 Subject: [PATCH] Fix description of sheathed cock being overridden. The sheathed description was never used, because it was always overridden by the non-sheathed description immediately afterwards. --- game.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game.js b/game.js index 887aebc..31dbe57 100644 --- a/game.js +++ b/game.js @@ -1446,8 +1446,9 @@ let macro = if (this.maleParts) { if (this.hasSheath && this.arousal < 75) { line = "Your " + this.describeDick + " cock is hidden away in your bulging sheath, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + "-wide balls hanging beneath."; + } else { + line = "Your " + this.describeDick + " cock hangs from your hips, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + "-wide balls hanging beneath."; } - line = "Your " + this.describeDick + " cock hangs from your hips, with two " + mass(macro.ballMass, unit, true) + ", " + length(macro.ballDiameter, unit, true) + "-wide balls hanging beneath."; result.push(line); result.push(macro.balls.description); }