mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-21 16:13:54 +00:00
Fixed stars appearing erroneously
This commit is contained in:
parent
a8e6f0832a
commit
51ed914f39
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ export const resource = {
|
|||
)
|
||||
}),
|
||||
draggable: true,
|
||||
showStar: node => (node.state as unknown as ResourceState).type in main.toolNodes.value,
|
||||
showStar: node => main.toolNodes.value[(node.state as unknown as ResourceState).type] != null,
|
||||
fillStar: node =>
|
||||
`${(node.state as unknown as ResourceState).type}Relic` in main.toolNodes.value
|
||||
} as NodeTypeOptions;
|
||||
|
|
Loading…
Reference in a new issue