Add tweak to allow changing the right-sidebar tab order #46

Merged
Oliver merged 7 commits from feature/rearrange-sidebar-tabs into main 2026-02-27 06:06:42 +00:00
Showing only changes of commit 621d2575ac - Show all commits

View file

@ -19,11 +19,15 @@ export function rearrangeSidebarTabs() {
restricted: false, restricted: false,
type: SidebarTabRearranger, type: SidebarTabRearranger,
}); });
game.settings.register(__ID__, key, { game.settings.register(__ID__, `${key}World`, {
scope: `world`,
config: false,
type: Array,
});
game.settings.register(__ID__, `${key}User`, {
scope: `user`, scope: `user`,
config: false, config: false,
type: Array, type: Array,
default: [],
}); });
// #endregion Registration // #endregion Registration