ソースを参照

Fixed arousal limit not being respected

tags/v0.2.8
Fen Dweller 7年前
コミット
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.breasts.fullnessPercent();

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


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