From 607eedc6d2546ad0c9662df4333c318a02622dcc Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Sun, 21 Sep 2025 00:11:35 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20mont=C3=A9e=20TMR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 4 ++++ module/settings/status-effects.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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])