瀏覽代碼

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


Loading…
取消
儲存