Add a dev mode setting that auto-switches the sidebar tab when reloading

This commit is contained in:
Oliver-Akins 2024-01-06 23:30:52 -07:00
parent 16a714868e
commit 911db1007a
2 changed files with 17 additions and 0 deletions

View file

@ -6,4 +6,11 @@ export default function() {
default: false,
requiresReload: false,
});
game.settings.register(`dotdungeon`, `defaultTab`, {
scope: `client`,
type: String,
config: false,
requiresReload: false,
});
};