14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
|
export const registerSystemSettings = function() {
|
||
|
|
||
|
/**
|
||
|
* Track the system version upon which point a migration was last applied
|
||
|
*/
|
||
|
game.settings.register("bitd", "systemMigrationVersion", {
|
||
|
name: "System Migration Version",
|
||
|
scope: "world",
|
||
|
config: false,
|
||
|
type: Number,
|
||
|
default: 0
|
||
|
});
|
||
|
};
|