Fix: /rdd avec conditions

This commit is contained in:
Vincent Vandemeulebrouck 2021-01-16 23:45:15 +01:00
parent b172f46539
commit c4f9626867

View File

@ -22,7 +22,7 @@ export class RdDRollResolutionTable extends Dialog {
let defRollData = { let defRollData = {
show: { title: titleTableDeResolution }, show: { title: titleTableDeResolution },
ajustementsConditions: CONFIG.RDD.ajustementsConditions, ajustementsConditions: CONFIG.RDD.ajustementsConditions,
difficultesLibres: CONFIG.RDD.difficultesLibres, difficultesLibres: CONFIG.RDD.ajustementsConditions,
etat: 0, etat: 0,
moral: 0, moral: 0,
carac: {}, carac: {},
@ -86,7 +86,7 @@ export class RdDRollResolutionTable extends Dialog {
this.updateRollResult(); this.updateRollResult();
}); });
html.find('#diffConditions').change((event) => { html.find('#diffConditions').change((event) => {
rollData.diffConditions = Misc.toInt(event.currentTarget.value); this.rollData.diffConditions = Misc.toInt(event.currentTarget.value);
this.updateRollResult(); this.updateRollResult();
}); });
html.find('#carac').change((event) => { html.find('#carac').change((event) => {