From 5c52a33496b9aed9d3050f1efcdcd7fa071a89c2 Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Mon, 17 Nov 2025 02:05:26 -0800 Subject: [PATCH 1/2] Fix styling of used action tokens for players (#1297) --- styles/less/ui/combat-sidebar/token-actions.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/styles/less/ui/combat-sidebar/token-actions.less b/styles/less/ui/combat-sidebar/token-actions.less index 41fb38ab..f3a11235 100644 --- a/styles/less/ui/combat-sidebar/token-actions.less +++ b/styles/less/ui/combat-sidebar/token-actions.less @@ -21,11 +21,6 @@ padding: 8px; --button-size: 0; - &.used { - opacity: 0.5; - background: transparent; - } - &.inactive { background: var(--color-warm-2); color: var(--color-light-1); @@ -35,6 +30,11 @@ filter: none; } } + + &.used { + opacity: 0.5; + background: transparent; + } } } From a1461321719b721b900c8f2a6f1b56dc3fc30f3c Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 17 Nov 2025 16:54:52 +0100 Subject: [PATCH 2/2] Beastfom Effect Unstuck (#1298) --- module/data/activeEffect/beastformEffect.mjs | 5 +++-- system.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/module/data/activeEffect/beastformEffect.mjs b/module/data/activeEffect/beastformEffect.mjs index 769b8153..0bd43c9c 100644 --- a/module/data/activeEffect/beastformEffect.mjs +++ b/module/data/activeEffect/beastformEffect.mjs @@ -61,11 +61,12 @@ export default class BeastformEffect extends BaseEffect { ...baseUpdate, 'texture': { enabled: this.characterTokenData.usesDynamicToken, - src: token.flags.daggerheart.beastformTokenImg + src: token.flags.daggerheart?.beastformTokenImg ?? this.characterTokenData.tokenImg }, 'ring': { subject: { - texture: token.flags.daggerheart.beastformSubjectTexture + texture: + token.flags.daggerheart?.beastformSubjectTexture ?? this.characterTokenData.tokenRingImg } }, 'flags.daggerheart': { '-=beastformTokenImg': null, '-=beastformSubjectTexture': null } diff --git a/system.json b/system.json index 467e9f7d..0d564b0f 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.2.2", + "version": "1.2.3", "compatibility": { "minimum": "13", "verified": "13.351",