Make the Delve Tour app optional (because I got annoyed with it popping up in the middle of the window)
This commit is contained in:
parent
f90ab0443f
commit
46a235b603
3 changed files with 16 additions and 1 deletions
11
module/settings/worldSettings.mjs
Normal file
11
module/settings/worldSettings.mjs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export function registerWorldSettings() {
|
||||
|
||||
game.settings.register(`ripcrypt`, `showDelveTour`, {
|
||||
name: `Delve Tour Popup`,
|
||||
scope: `world`,
|
||||
type: Boolean,
|
||||
config: true,
|
||||
default: true,
|
||||
requiresReload: false,
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue