await pour appliquerReveDeDragon

This commit is contained in:
Vincent Vandemeulebrouck 2020-11-25 23:41:08 +01:00
parent fd8f5cfcf1
commit aee7a43901

View File

@ -528,16 +528,16 @@ export class RdDActor extends Actor {
let rolled = await RdDResolutionTable.roll(reveActuel, difficulte);
// TODO: xp particulière
console.log("combattreReveDeDragon", rolled );
return this.appliquerReveDeDragon(rolled, force);
return await this.appliquerReveDeDragon(rolled, force);
}
/* -------------------------------------------- */
appliquerReveDeDragon(roll, force) {
async appliquerReveDeDragon(roll, force) {
let message = "";
if (roll.isSuccess) {
message += "<br>Vous gagnez " + force + " points de Rêve";
this.updatePointDeSeuil();
this.reveActuelIncDec(force);
await this.updatePointDeSeuil();
await this.reveActuelIncDec(force);
}
if (roll.isPart) {
// TODO: Dialog pour choix entre HR opu général?