From bd732afb0421931cdf3d6537689f4d11d278c0ac Mon Sep 17 00:00:00 2001 From: "walther.johnson" Date: Mon, 7 Jul 2025 17:15:21 -0600 Subject: [PATCH] forgot to update superfluous fallback --- module/applications/sheets/actors/character.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/applications/sheets/actors/character.mjs b/module/applications/sheets/actors/character.mjs index 66e3c67d..f0ddc0ed 100644 --- a/module/applications/sheets/actors/character.mjs +++ b/module/applications/sheets/actors/character.mjs @@ -824,7 +824,7 @@ export default class CharacterSheet extends DaggerheartSheet(ActorSheetV2) { description: item.system.description, actions: item.system.actions, source: { - actor: item.actor?.uuid ?? item.actor?.id ?? null, + actor: this.item?.actor?.uuid ?? null, item: item.uuid ?? item.id } }; @@ -917,7 +917,7 @@ export default class CharacterSheet extends DaggerheartSheet(ActorSheetV2) { img: item.img, description: item.system.description, source: { - actor: item.actor?.uuid ?? item.actor?.id ?? null, + actor: this.item?.actor?.uuid ?? null, item: item.uuid ?? item.id } };