This commit is contained in:
François-Xavier Guillois
2023-08-25 10:36:25 +02:00
parent 7aeef29e34
commit 641d2a892a
29 changed files with 238 additions and 19 deletions
+11 -2
View File
@@ -1,7 +1,7 @@
export const registerSettings = function () {
game.settings.register("vermine2047", "game-mode", {
name: game.i18n.localize("VERMINE.WorldSettings.GameMode.Name"),
hint: game.i18n.localize("VERMINE.WorldSettings.GameMode.Hint"),
name: game.i18n.localize("SETTINGS.world.game_mode.name"),
hint: game.i18n.localize("SETTINGS.world.game_mode.hint"),
scope: "system",
config: true,
type: String,
@@ -15,4 +15,13 @@ export const registerSettings = function () {
// console.log(value);
}
});
game.settings.register("vermine2047", "first-run-tips-shown", {
name: game.i18n.localize("SETTINGS.world.first_run.name"),
hint: game.i18n.localize("SETTINGS.world.first_run.hint"),
scope: "system",
config: true,
type: Boolean,
default: false
});
}