diff --git a/changelog.md b/changelog.md index 63fcc3a7..21df76f5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # 13.0 +## 13.0.9 - Le combat d'Illysis +- Fix + - La montée en TMR fonctionne + ## 13.0.8 - Le renouveau d'Illysis - Fix Foundry V13 diff --git a/module/settings/status-effects.js b/module/settings/status-effects.js index de2da309..242ef3c8 100644 --- a/module/settings/status-effects.js +++ b/module/settings/status-effects.js @@ -108,7 +108,7 @@ export class StatusEffects extends FormApplication { } static prepareActiveEffect(effectId) { - const status = rddStatusEffects.find(it => it.id == effectId) + let status = rddStatusEffects.find(it => it.id == effectId) if (status) { status = foundry.utils.duplicate(status) status.statuses = new Set([effectId])