Add tweak to allow changing the right-sidebar tab order #46
1 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue