Seuls les personnages sont saouls

Pas d'éthylisme pour les créatures
This commit is contained in:
Vincent Vandemeulebrouck 2021-01-19 22:32:08 +01:00
parent c23065119e
commit 3cfeeadbb6

View File

@ -391,7 +391,9 @@ export class RdDActor extends Actor {
} }
await this.update({ "data.blessures": blessures }); await this.update({ "data.blessures": blessures });
} }
await this.setEthylisme(1); if (this.isPersonnage()) {
await this.setEthylisme(1);
}
await this.santeIncDec("vie", this.data.data.sante.vie.max - this.data.data.sante.vie.value); await this.santeIncDec("vie", this.data.data.sante.vie.max - this.data.data.sante.vie.value);
await this.santeIncDec("endurance", this.data.data.sante.endurance.max - this.data.data.sante.endurance.value); await this.santeIncDec("endurance", this.data.data.sante.endurance.max - this.data.data.sante.endurance.value);