mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-22 08:31:31 +00:00
Fix mine modifiers tab appearing before it should
This commit is contained in:
parent
3a05bedc1e
commit
ef5b38d67b
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
glowColor(): string {
|
glowColor(): string {
|
||||||
return modifierTabs.activeTab.value === this.tab ? "white" : "";
|
return modifierTabs.activeTab.value === this.tab ? "white" : "";
|
||||||
},
|
},
|
||||||
visibility: () => Object.keys(toolNodes.value).length > 0,
|
visibility: () => Object.values(toolNodes.value).filter(n => n != null).length > 0,
|
||||||
tab: miningTab,
|
tab: miningTab,
|
||||||
miningTabCollapsed
|
miningTabCollapsed
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in a new issue