This commit is contained in:
WBHarry 2026-06-21 23:34:51 +02:00
parent 6202267ddd
commit d5361b9d27
2 changed files with 3 additions and 2 deletions

View file

@ -1451,7 +1451,7 @@
},
"triggerType": "Trigger Type",
"triggeringActorType": "Triggering Actor Type",
"triggerError": "{trigger} trigger on {item} failed for {actor}. It's probably configured wrong."
"triggerError": "{trigger} trigger on {item}({itemUuid}) failed for {actor}. It's probably configured wrong."
},
"WeaponFeature": {
"barrier": {

View file

@ -156,7 +156,8 @@ export default class RegisteredTriggers extends Map {
game.i18n.format('DAGGERHEART.CONFIG.Triggers.triggerError', {
trigger: triggerName,
actor: currentActor?.name,
item: item?.name ?? '<Missing Item>'
item: item?.name ?? '<Missing Item>',
itemUuid: item?.uuid ?? '<Missing UUID>'
})
);
}