소스 검색

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


불러오는 중...
취소
저장