mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Move bonfire condition to correct buyable
This commit is contained in:
parent
43ae56d901
commit
c26f7ddd21
1 changed files with 3 additions and 3 deletions
|
@ -98,8 +98,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
style: {
|
||||
color: colorText,
|
||||
width: "160px"
|
||||
},
|
||||
visibility: () => showIf(unlockBonfire.bought.value)
|
||||
}
|
||||
})) as GenericBuyable & { resource: Resource };
|
||||
const minFire = createClickable(() => ({
|
||||
display: "0",
|
||||
|
@ -175,7 +174,8 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
style: {
|
||||
color: colorText,
|
||||
width: "160px"
|
||||
}
|
||||
},
|
||||
visibility: () => showIf(unlockBonfire.bought.value)
|
||||
})) as GenericBuyable & { resource: Resource };
|
||||
const minBonfire = createClickable(() => ({
|
||||
display: "0",
|
||||
|
|
Loading…
Reference in a new issue