mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 08:31:35 +00:00
Fix wetter dyes upgrade
This commit is contained in:
parent
8e97fd3e4f
commit
1a4beb4f4e
1 changed files with 2 additions and 3 deletions
|
@ -101,9 +101,8 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
multiplier: 2,
|
multiplier: 2,
|
||||||
description: "Wetter Dyes",
|
description: "Wetter Dyes",
|
||||||
enabled: () =>
|
enabled: () =>
|
||||||
(upgrades.yellowDyeUpg.bought.value && options.color == "red") ||
|
upgrades.yellowDyeUpg.bought.value &&
|
||||||
options.color == "yellow" ||
|
(options.color == "red" || options.color == "yellow" || options.color == "blue")
|
||||||
options.color == "blue"
|
|
||||||
}))
|
}))
|
||||||
]) as WithRequired<Modifier, "description" | "revert">;
|
]) as WithRequired<Modifier, "description" | "revert">;
|
||||||
const computedToGenerate = computed(() => toGenerate.apply(0));
|
const computedToGenerate = computed(() => toGenerate.apply(0));
|
||||||
|
|
Loading…
Reference in a new issue