mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +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,
|
||||
description: "Wetter Dyes",
|
||||
enabled: () =>
|
||||
(upgrades.yellowDyeUpg.bought.value && options.color == "red") ||
|
||||
options.color == "yellow" ||
|
||||
options.color == "blue"
|
||||
upgrades.yellowDyeUpg.bought.value &&
|
||||
(options.color == "red" || options.color == "yellow" || options.color == "blue")
|
||||
}))
|
||||
]) as WithRequired<Modifier, "description" | "revert">;
|
||||
const computedToGenerate = computed(() => toGenerate.apply(0));
|
||||
|
|
Loading…
Reference in a new issue