mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 08:12:41 +00:00
Don't show white dye boost before white dye bought
This commit is contained in:
parent
944c305230
commit
1316f1bf01
1 changed files with 2 additions and 1 deletions
|
@ -394,7 +394,8 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: () => dyes.boosts.white1.value,
|
||||
description: "White Dye Boost"
|
||||
description: "White Dye Boost",
|
||||
enabled: () => Decimal.gt(dyes.dyes.white.amount.value, 0)
|
||||
})),
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier: () =>
|
||||
|
|
Loading…
Reference in a new issue