From 8ff4bed91d2142c7e366361f316ab2564737d415 Mon Sep 17 00:00:00 2001 From: Cyril ALFARO Date: Sat, 2 Aug 2025 01:05:51 +0200 Subject: [PATCH] Update character.mjs --- module/applications/sheets/actors/character.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/applications/sheets/actors/character.mjs b/module/applications/sheets/actors/character.mjs index 1ef50b84..b8f78a15 100644 --- a/module/applications/sheets/actors/character.mjs +++ b/module/applications/sheets/actors/character.mjs @@ -640,7 +640,7 @@ export default class CharacterSheet extends DHBaseActorSheet { await item.update({ 'system.equipped': true }); break; case 'weapon': - if (this.document.effects.find(x => x.type === 'beastform')) { + if (this.document.effects.find(x => !x.disabled && x.type === 'beastform')) { return ui.notifications.warn( game.i18n.localize('DAGGERHEART.UI.Notifications.beastformEquipWeapon') );