Fixed actionType constants

This commit is contained in:
WBHarry 2025-12-21 15:39:05 +01:00
parent b8e08fccd1
commit f786ee5f06
3 changed files with 23 additions and 23 deletions

View file

@ -19,7 +19,7 @@ export default class DualityRoll extends D20Roll {
get title() {
return game.i18n.localize(
`DAGGERHEART.GENERAL.${this.options?.actionType === CONFIG.DH.ITEM.actionTypes.reaction.id ? 'reactionRoll' : 'dualityRoll'}`
`DAGGERHEART.GENERAL.${this.options?.actionType === 'reaction' ? 'reactionRoll' : 'dualityRoll'}`
);
}