Explorar el Código

Fixed arousal limit not being respected

tags/v0.2.8
Fen Dweller hace 7 años
padre
commit
9fb1aab29f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      vore.js

+ 1
- 1
vore.js Ver fichero

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


Cargando…
Cancelar
Guardar