Allow the Combat tracker to roll intiative using a custom formula

This commit is contained in:
Oliver 2026-01-20 23:16:45 -07:00
parent deedda7648
commit 116eb216d0
4 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import { __ID__ } from "../consts.mjs";
const { Combatant } = foundry.documents;
export class TAFCombatant extends Combatant {
_getInitiativeFormula() {
return game.settings.get(__ID__, `initiativeFormula`);
};
};