浏览代码

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


正在加载...
取消
保存