Просмотр исходного кода

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 лет назад
Родитель
Сommit
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);
}


Загрузка…
Отмена
Сохранить