mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 13:11:08 +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',
|
fearDice = 'd12',
|
||||||
advantageDice = 'd6',
|
advantageDice = 'd6',
|
||||||
disadvantageDice = 'd6',
|
disadvantageDice = 'd6',
|
||||||
advantage = (config.event.altKey ?? config.event.ctrlKey) ? false : null,
|
advantage = config.event.altKey ? true : config.event.ctrlKey ? false : null,
|
||||||
targets,
|
targets,
|
||||||
damage = config.damage,
|
damage = config.damage,
|
||||||
modifiers = this.formatRollModifier(config.roll),
|
modifiers = this.formatRollModifier(config.roll),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue