From 1582b61825a33cda84a6e65461ad39567c9446ea Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 19 Jan 2026 11:55:15 +0100 Subject: [PATCH 1/3] Update module/data/settings/Automation.mjs Co-authored-by: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> --- module/data/settings/Automation.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/data/settings/Automation.mjs b/module/data/settings/Automation.mjs index 27aea024..436f0eb7 100644 --- a/module/data/settings/Automation.mjs +++ b/module/data/settings/Automation.mjs @@ -106,7 +106,7 @@ export default class DhAutomation extends foundry.abstract.DataModel { initial: 'icons/magic/control/sleep-bubble-purple.webp', categories: ['IMAGE'], base64: false, - label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.defeated.unconcious.label' + label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.defeated.unconscious.label' }) }), roll: new fields.SchemaField({ From b0ace36b460dbe7b65707e77330169dfca5619a3 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 19 Jan 2026 11:55:21 +0100 Subject: [PATCH 2/3] Update lang/en.json Co-authored-by: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> --- lang/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en.json b/lang/en.json index c7b0a621..dda78410 100755 --- a/lang/en.json +++ b/lang/en.json @@ -2443,7 +2443,7 @@ "deathMove": { "label": "Death Move" }, "dead": { "label": "Dead" }, "defeated": { "label": "Defeated" }, - "unconcious": { "label": "Unconcious" } + "unconscious": { "label": "Unconscious" } }, "hopeFear": { "label": "Hope & Fear", From 6b42672b6088acbc0c9a3d68477d13aea6cf8ef1 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Mon, 19 Jan 2026 13:22:10 +0100 Subject: [PATCH 3/3] Fixed DefeatedCondition localizations --- module/config/generalConfig.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/config/generalConfig.mjs b/module/config/generalConfig.mjs index a3240668..be1dfce1 100644 --- a/module/config/generalConfig.mjs +++ b/module/config/generalConfig.mjs @@ -171,7 +171,7 @@ export const defeatedConditions = () => { acc[key] = { ...choice, img: defeated[`${choice.id}Icon`], - description: `DAGGERHEART.CONFIG.Condition.${choice.id}.description` + description: game.i18n.localize(`DAGGERHEART.CONFIG.Condition.${choice.id}.description`) }; return acc;