Add bytes to the Mob data model

This commit is contained in:
Oliver-Akins 2024-02-02 19:11:25 -07:00
parent aee607e1bc
commit 91a98d3d2a

View file

@ -34,6 +34,10 @@ export class MobData extends foundry.abstract.TypeDataModel {
initial: ``, initial: ``,
blank: true, blank: true,
}), }),
bytes: new fields.NumberField({
initial: 0,
min: 0,
}),
}; };
}; };
}; };