#44 - Gestion sur encombrement corrigée

This commit is contained in:
2020-11-27 12:23:22 +01:00
9 changed files with 65 additions and 35 deletions

View File

@ -336,11 +336,11 @@ export class RdDActorSheet extends ActorSheet {
this.render(true);
});
html.find('#ptreve-actuel-plus').click((event) => {
this.actor.updatePointsDeReve(1);
this.actor.reveActuelIncDec(1);
this.render(true);
});
html.find('#ptreve-actuel-moins').click((event) => {
this.actor.updatePointsDeReve(-1);
this.actor.reveActuelIncDec(-1);
this.render(true);
});
html.find('#fatigue-plus').click((event) => {