Move missing attack type to getModel

This commit is contained in:
Dapoolp 2025-08-14 15:04:40 +02:00
parent 42aba217ee
commit 87236879a9
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ export class DHActionDiceData extends foundry.abstract.DataModel {
bonus: new fields.NumberField({ nullable: true, initial: null, label: 'Bonus' }),
custom: new fields.SchemaField({
enabled: new fields.BooleanField({ label: 'Custom Formula' }),
formula: new FormulaField({ label: 'Formula' })
formula: new FormulaField({ label: 'Formula', initial: "" })
})
};
}