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

Fixed arousal limit not being respected

tags/v0.2.8
Fen Dweller 8 лет назад
Родитель
Сommit
9fb1aab29f
1 измененных файлов: 1 добавлений и 1 удалений
  1. +1
    -1
      vore.js

+ 1
- 1
vore.js Просмотреть файл

@@ -186,7 +186,7 @@ function Player(name = "Player") {
this.arousal += this.arousalRate * this.womb.fullnessPercent(); this.arousal += this.arousalRate * this.womb.fullnessPercent();
this.arousal += this.arousalRate * this.breasts.fullnessPercent(); this.arousal += this.arousalRate * this.breasts.fullnessPercent();


if (this.arousal > 100) {
if (this.arousal > this.arousalLimit()) {
update(this.orgasm()); update(this.orgasm());
} }
}; };


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