Corrections automatisations combat

Visiblement des changements sur les callbacks n'avaient pas
été finalisés
This commit is contained in:
2025-02-10 01:13:23 +01:00
parent 5f3c678195
commit df76c4bd78
5 changed files with 59 additions and 62 deletions

View File

@ -277,14 +277,9 @@ export class RdDBaseActorReve extends RdDBaseActor {
return dialog
}
createEmptyCallback() {
return {
condition: r => false,
action: r => { }
};
}
createCallbackExperience() { return this.createEmptyCallback(); }
createCallbackAppelAuMoral() { return this.createEmptyCallback(); }
createCallbackExperience() { return { action: r => { } } }
createCallbackAppelAuMoral() { return { action: r => { } } }
async _onCloseRollDialog(html) { }
async rollCaracCompetence(caracName, compName, diff, options = { title: "" }) {