mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 08:31:35 +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: {
|
style: {
|
||||||
color: colorText,
|
color: colorText,
|
||||||
width: "160px"
|
width: "160px"
|
||||||
},
|
}
|
||||||
visibility: () => showIf(unlockBonfire.bought.value)
|
|
||||||
})) as GenericBuyable & { resource: Resource };
|
})) as GenericBuyable & { resource: Resource };
|
||||||
const minFire = createClickable(() => ({
|
const minFire = createClickable(() => ({
|
||||||
display: "0",
|
display: "0",
|
||||||
|
@ -175,7 +174,8 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
style: {
|
style: {
|
||||||
color: colorText,
|
color: colorText,
|
||||||
width: "160px"
|
width: "160px"
|
||||||
}
|
},
|
||||||
|
visibility: () => showIf(unlockBonfire.bought.value)
|
||||||
})) as GenericBuyable & { resource: Resource };
|
})) as GenericBuyable & { resource: Resource };
|
||||||
const minBonfire = createClickable(() => ({
|
const minBonfire = createClickable(() => ({
|
||||||
display: "0",
|
display: "0",
|
||||||
|
|
Loading…
Reference in a new issue