Quellcode durchsuchen

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.
tags/v0.7.2
kinkhorse vor 7 Jahren
Ursprung
Commit
26d1a845bb
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      game.js

+ 2
- 1
game.js Datei anzeigen

@@ -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);
}


Laden…
Abbrechen
Speichern