Fixed token-config

This commit is contained in:
WBHarry 2025-12-20 19:09:08 +01:00
parent 809255ba79
commit 51a4d74a04
9 changed files with 163 additions and 21 deletions

View file

@ -80,9 +80,9 @@ export default class BaseDataActor extends foundry.abstract.TypeDataModel {
if (this.metadata.usesSize)
schema.size = new fields.StringField({
required: true,
nullable: true,
nullable: false,
choices: CONFIG.DH.ACTOR.tokenSize,
initial: null
initial: CONFIG.DH.ACTOR.tokenSize.custom.id
});
return schema;
}