ソースを参照

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 7年前
コミット
26d1a845bb
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      game.js

+ 2
- 1
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);
}


読み込み中…
キャンセル
保存