Add saving and editing of default attributes and their values (closes #29)

This commit is contained in:
Oliver 2026-03-02 21:48:59 -07:00
parent 5159db3d33
commit d540cc72f6
6 changed files with 178 additions and 34 deletions

View file

@ -59,4 +59,10 @@ export function registerWorldSettings() {
}),
scope: `world`,
});
game.settings.register(__ID__, `actorDefaultAttributes`, {
config: false,
type: Object,
scope: `world`,
});
};