Merged with main

This commit is contained in:
WBHarry 2025-07-07 20:53:12 +02:00
commit 843c7c55f9
23 changed files with 170 additions and 92 deletions

View file

@ -79,7 +79,9 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo
action =
actor.system.attack?._id === actionId
? actor.system.attack
: item?.system?.actions?.find(a => a._id === actionId);
: item.system.attack?._id === actionId
? item.system.attack
: item?.system?.actions?.find(a => a._id === actionId);
return action;
}