Fix: transfert du moral à chateau dormant

This commit is contained in:
Vincent Vandemeulebrouck 2023-02-17 01:29:21 +01:00
parent 7fed3844b5
commit 045ee76013

View File

@ -1,4 +1,3 @@
import { EffetsDraconiques } from "../tmr/effets-draconiques.js";
export class DialogChateauDormant extends Dialog { export class DialogChateauDormant extends Dialog {
@ -76,8 +75,14 @@ export class DialogChateauDormant extends Dialog {
async onChateauDormant() { async onChateauDormant() {
const motifStress = this.html.find("form input[name='motifStress']").val(); const motifStress = this.html.find("form input[name='motifStress']").val();
const consignesChateauDormant = jQuery.map(this.html.find('li.set-sommeil-actor'), it => { jQuery.map(
const actorRow = this.html.find(it); this.html.find('li.set-sommeil-actor'),
it => this.extractConsigneActor(this.html.find(it), motifStress)
).forEach(async consigne => await consigne.actor.prepareChateauDormant(consigne))
}
extractConsigneActor(actorRow, motifStress) {
const actorId = actorRow.data('actor-id'); const actorId = actorRow.data('actor-id');
const actor = this.getActor(actorId); const actor = this.getActor(actorId);
const insomnie = actorRow.find('input.sommeil-insomnie').is(':checked'); const insomnie = actorRow.find('input.sommeil-insomnie').is(':checked');
@ -93,11 +98,8 @@ export class DialogChateauDormant extends Dialog {
date: this.dialogData.finChateauDormant, date: this.dialogData.finChateauDormant,
insomnie: insomnie, insomnie: insomnie,
heures: insomnie ? 0 : Number.parseInt(actorRow.find('input.sommeil-heures').val()), heures: insomnie ? 0 : Number.parseInt(actorRow.find('input.sommeil-heures').val()),
moral: actor.moral, moral: actor.system.sommeil.moral ?? 'neutre',
} }
};
} }
});
consignesChateauDormant.forEach(async consigne => await consigne.actor.prepareChateauDormant(consigne))
}
} }