Fixing and cleaning up

This commit is contained in:
WBHarry 2025-06-06 22:25:57 +02:00
parent 2cf68b7f17
commit ece1c7e6c1
8 changed files with 14 additions and 26 deletions

View file

@ -1,9 +1,6 @@
export default class DhCombat extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
actions: new fields.NumberField({ initial: 0, integer: true }),
started: new fields.BooleanField({ required: true, initial: false })
};
return {};
}
}