ds4/src/module/settings.ts

12 lines
347 B
TypeScript

export function registerSystemSettings(): void {
/**
* Track the system version upon which point a migration was last applied
*/
game.settings.register("ds4", "systemMigrationVersion", {
name: "System Migration Version",
scope: "world",
config: false,
type: String,
default: "",
});
}