mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
Skip black dye for ribbons cost
This commit is contained in:
parent
3d4d43fa15
commit
2e9c2e4487
1 changed files with 4 additions and 1 deletions
|
@ -41,7 +41,10 @@ const layer = createLayer(id, () => {
|
|||
)
|
||||
);
|
||||
const currentDyeType = computed(
|
||||
() => Object.values(dyes.dyes)[new Decimal(ribbon.value).toNumber() % 6]
|
||||
() =>
|
||||
Object.values(dyes.dyes).filter(d => d !== dyes.dyes.black)[
|
||||
new Decimal(ribbon.value).toNumber() % 6
|
||||
]
|
||||
);
|
||||
|
||||
const ribbonProgress = persistent<DecimalSource>(0);
|
||||
|
|
Loading…
Reference in a new issue