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:
Oliver-Akins 2025-02-09 23:18:25 -07:00
parent f90ab0443f
commit 46a235b603
3 changed files with 16 additions and 1 deletions

View 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,
});
};