Other fixes

This commit is contained in:
Dapoolp 2025-08-30 11:20:07 +02:00
parent 1d047beddb
commit 5586e74a46
2 changed files with 12 additions and 4 deletions

View file

@ -11,7 +11,9 @@ export default class SaveField extends fields.SchemaField {
difficulty: new fields.NumberField({ nullable: true, initial: null, integer: true, min: 0 }),
damageMod: new fields.StringField({
initial: CONFIG.DH.ACTIONS.damageOnSave.none.id,
choices: CONFIG.DH.ACTIONS.damageOnSave
choices: CONFIG.DH.ACTIONS.damageOnSave,
nullable: false,
required: true
})
};
super(saveFields, options, context);