mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-23 19:09:55 +02:00
.
This commit is contained in:
parent
6202267ddd
commit
d5361b9d27
2 changed files with 3 additions and 2 deletions
|
|
@ -1451,7 +1451,7 @@
|
||||||
},
|
},
|
||||||
"triggerType": "Trigger Type",
|
"triggerType": "Trigger Type",
|
||||||
"triggeringActorType": "Triggering Actor 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": {
|
"WeaponFeature": {
|
||||||
"barrier": {
|
"barrier": {
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,8 @@ export default class RegisteredTriggers extends Map {
|
||||||
game.i18n.format('DAGGERHEART.CONFIG.Triggers.triggerError', {
|
game.i18n.format('DAGGERHEART.CONFIG.Triggers.triggerError', {
|
||||||
trigger: triggerName,
|
trigger: triggerName,
|
||||||
actor: currentActor?.name,
|
actor: currentActor?.name,
|
||||||
item: item?.name ?? '<Missing Item>'
|
item: item?.name ?? '<Missing Item>',
|
||||||
|
itemUuid: item?.uuid ?? '<Missing UUID>'
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue