Merge branch 'main' into release

This commit is contained in:
WBHarry 2025-11-17 16:55:14 +01:00
commit ca4336bd39
3 changed files with 9 additions and 8 deletions

View file

@ -61,11 +61,12 @@ export default class BeastformEffect extends BaseEffect {
...baseUpdate, ...baseUpdate,
'texture': { 'texture': {
enabled: this.characterTokenData.usesDynamicToken, enabled: this.characterTokenData.usesDynamicToken,
src: token.flags.daggerheart.beastformTokenImg src: token.flags.daggerheart?.beastformTokenImg ?? this.characterTokenData.tokenImg
}, },
'ring': { 'ring': {
subject: { subject: {
texture: token.flags.daggerheart.beastformSubjectTexture texture:
token.flags.daggerheart?.beastformSubjectTexture ?? this.characterTokenData.tokenRingImg
} }
}, },
'flags.daggerheart': { '-=beastformTokenImg': null, '-=beastformSubjectTexture': null } 'flags.daggerheart': { '-=beastformTokenImg': null, '-=beastformSubjectTexture': null }

View file

@ -21,11 +21,6 @@
padding: 8px; padding: 8px;
--button-size: 0; --button-size: 0;
&.used {
opacity: 0.5;
background: transparent;
}
&.inactive { &.inactive {
background: var(--color-warm-2); background: var(--color-warm-2);
color: var(--color-light-1); color: var(--color-light-1);
@ -35,6 +30,11 @@
filter: none; filter: none;
} }
} }
&.used {
opacity: 0.5;
background: transparent;
}
} }
} }

View file

@ -2,7 +2,7 @@
"id": "daggerheart", "id": "daggerheart",
"title": "Daggerheart", "title": "Daggerheart",
"description": "An unofficial implementation of the Daggerheart system", "description": "An unofficial implementation of the Daggerheart system",
"version": "1.2.2", "version": "1.2.3",
"compatibility": { "compatibility": {
"minimum": "13", "minimum": "13",
"verified": "13.351", "verified": "13.351",