From 98c8e1f4988b59ba6600d1c76ad6c4fa07d0cae8 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Sat, 2 May 2026 21:59:36 +0200 Subject: [PATCH 1/2] Fixed so that reseting Uses upon finishing downtime uses the actor's rollData and not just the actor data (#1859) --- module/applications/dialogs/downtime.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/applications/dialogs/downtime.mjs b/module/applications/dialogs/downtime.mjs index 5dc93bae..09d901f4 100644 --- a/module/applications/dialogs/downtime.mjs +++ b/module/applications/dialogs/downtime.mjs @@ -259,7 +259,7 @@ export default class DhpDowntime extends HandlebarsApplicationMixin(ApplicationV const resetValue = increasing ? 0 : feature.system.resource.max - ? new Roll(Roll.replaceFormulaData(feature.system.resource.max, this.actor)).evaluateSync().total + ? new Roll(Roll.replaceFormulaData(feature.system.resource.max, this.actor.getRollData())).evaluateSync().total : 0; await feature.update({ 'system.resource.value': resetValue }); From 3d98f16ac6670773cdbd7379065a077c50145fec Mon Sep 17 00:00:00 2001 From: WBHarry Date: Sat, 2 May 2026 22:58:11 +0200 Subject: [PATCH 2/2] Raised version --- system.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system.json b/system.json index a5ec4af1..66d6fb2f 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "daggerheart", "title": "Daggerheart", "description": "An unofficial implementation of the Daggerheart system", - "version": "1.9.12", + "version": "1.9.13", "compatibility": { "minimum": "13.346", "verified": "13.351", @@ -10,7 +10,7 @@ }, "url": "https://github.com/Foundryborne/daggerheart", "manifest": "https://raw.githubusercontent.com/Foundryborne/daggerheart/V13/system.json", - "download": "https://github.com/Foundryborne/daggerheart/releases/download/1.9.12/system.zip", + "download": "https://github.com/Foundryborne/daggerheart/releases/download/1.9.13/system.zip", "authors": [ { "name": "WBHarry"