mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-01-31 07:31:37 +00:00
Fix 0x yellow multiplier
This commit is contained in:
parent
226962699a
commit
33bd09e9bf
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
modifiers.push(
|
||||
createMultiplicativeModifier(() => ({
|
||||
multiplier() {
|
||||
return Decimal.add(dyes.red.amount.value, 1).log10().pow(0.75);
|
||||
return Decimal.add(dyes.red.amount.value, 1).log10().add(1).pow(0.75);
|
||||
},
|
||||
description: "Dye Synergy I"
|
||||
}))
|
||||
|
|
Loading…
Add table
Reference in a new issue