瀏覽代碼

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


Loading…
取消
儲存