mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
Fixed so that attribute rolls for characters are set as Action type (#1347)
This commit is contained in:
parent
f29198e81f
commit
f41f0b20b7
2 changed files with 2 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
|
|||
this.config.actionType = this.reactionOverride
|
||||
? CONFIG.DH.ITEM.actionTypes.reaction.id
|
||||
: this.config.actionType === CONFIG.DH.ITEM.actionTypes.reaction.id
|
||||
? null
|
||||
? CONFIG.DH.ITEM.actionTypes.action.id
|
||||
: this.config.actionType;
|
||||
this.render();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -717,6 +717,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
|
|||
};
|
||||
const result = await this.document.diceRoll({
|
||||
...config,
|
||||
actionType: 'action',
|
||||
headerTitle: `${game.i18n.localize('DAGGERHEART.GENERAL.dualityRoll')}: ${this.actor.name}`,
|
||||
title: game.i18n.format('DAGGERHEART.UI.Chat.dualityRoll.abilityCheckTitle', {
|
||||
ability: abilityLabel
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue