Use the flags setting

This commit is contained in:
Chris Ryan 2025-08-20 21:57:15 +10:00
parent 57fc5142b6
commit 71238935d6
6 changed files with 11 additions and 45 deletions

View file

@ -7,3 +7,6 @@ export * as actors from './actor/_module.mjs';
export * as chatMessages from './chat-message/_modules.mjs';
export * as fields from './fields/_module.mjs';
export * as items from './item/_module.mjs';
export * as scene from './scene/_module.mjs';

View file

@ -1,15 +0,0 @@
export default class DhSceneConfig extends foundry.abstract.DataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
...super.defineSchema(),
rangeMeasurementSettingsOverrideField: new fields.BooleanField({
initial: false,
label: "Override Global Range Measurement Settings"
})
}
}
}

View file

@ -1 +0,0 @@
export { default as DhSceneConfig } from './SceneConfig.mjs';