v13.0.14 - Le familier d'Illysis #779

Merged
uberwald merged 10 commits from :v13 into v13 2025-10-25 23:21:59 +02:00
Showing only changes of commit a7e4aea52d - Show all commits

View File

@@ -74,7 +74,7 @@ export class RollPartMeditation extends RollPartSelect {
getAjustements(rollData) {
const malus = this.getMalusEchecs(rollData)
const malusEchecs = malusEchecs == 0 ? [] : [{ label: "Méditation", value: malus }]
const malusEchecs = malus == 0 ? [] : [{ label: "Méditation", value: malus }]
const malusConditions = { label: "Conditions", value: this.getMalusConditions(rollData) }
return [malusConditions, ...malusEchecs]
}