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,
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`,
config: false,
type: Array,
default: [],
});
// #endregion Registration