mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
Fix to advantage/disadvantage shortcut
This commit is contained in:
parent
01aa1b4bdd
commit
1e4511faec
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ export default class DhpActor extends Actor {
|
|||
fearDice = 'd12',
|
||||
advantageDice = 'd6',
|
||||
disadvantageDice = 'd6',
|
||||
advantage = (config.event.altKey ?? config.event.ctrlKey) ? false : null,
|
||||
advantage = config.event.altKey ? true : config.event.ctrlKey ? false : null,
|
||||
targets,
|
||||
damage = config.damage,
|
||||
modifiers = this.formatRollModifier(config.roll),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue