mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-25 09:52:02 +00:00
fix red dye bug
This commit is contained in:
parent
e8e2880cff
commit
a39508b9b2
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
modifiers.push(
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier() {
|
||||
return Decimal.add(dyes.blue.amount.value, 1).log10();
|
||||
return Decimal.add(dyes.blue.amount.value, 1).log10().add(1);
|
||||
},
|
||||
description: "Dye Synergy II",
|
||||
enabled: oil.row3Upgrades[3].bought
|
||||
|
|
Loading…
Reference in a new issue