Typo: maladresse au lieu d'échec total

Lors d'un échec total, on tire une maladresse, pas un échec total
This commit is contained in:
Vincent Vandemeulebrouck 2021-02-25 02:06:21 +01:00
parent 55d11695f7
commit da56316e42

View File

@ -592,7 +592,7 @@ export class RdDCombat {
const avecArme = arme?.data.categorie_parade != 'sans-armes';
const action = (rollData.attackerRoll ? (arme ? "la parade" : "l'esquive") : "l'attaque");
ChatUtility.createChatWithRollMode(this.defender.name, {
content: `<strong>Echec total à ${action}!</strong> ` + await RdDRollTables.getMaladresse({ arme: avecArme })
content: `<strong>Maladresse à ${action}!</strong> ` + await RdDRollTables.getMaladresse({ arme: avecArme })
});
}