mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-23 10:59:54 +02:00
.
This commit is contained in:
parent
4d81509e79
commit
9618ad3d95
5 changed files with 11 additions and 10 deletions
|
|
@ -362,11 +362,11 @@ export default class DualityRoll extends D20Roll {
|
|||
|
||||
if (config.roll.result.duality === -1) {
|
||||
await updateCountdowns(
|
||||
{ type: CONFIG.DH.GENERAL.countdownProgressionTypes.actionRoll.id },
|
||||
{ type: CONFIG.DH.GENERAL.countdownProgressionTypes.fear.id }
|
||||
CONFIG.DH.GENERAL.countdownProgressionTypes.actionRoll.id,
|
||||
CONFIG.DH.GENERAL.countdownProgressionTypes.fear.id
|
||||
);
|
||||
} else {
|
||||
await updateCountdowns({ type: CONFIG.DH.GENERAL.countdownProgressionTypes.actionRoll.id });
|
||||
await updateCountdowns(CONFIG.DH.GENERAL.countdownProgressionTypes.actionRoll.id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ export function updateResourcesForDualityReroll(oldDuality, newDuality, actor) {
|
|||
if (fear !== 0) {
|
||||
updates.push({
|
||||
type: CONFIG.DH.GENERAL.countdownProgressionTypes.fear.id,
|
||||
reverseDirection: fear === 1 ? false : true
|
||||
undo: fear === 1 ? false : true
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue