mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 08:12:41 +00:00
Ribbons can't cost white dye
This commit is contained in:
parent
135b7b151b
commit
83bf790945
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ const layer = createLayer(id, () => {
|
|||
);
|
||||
const currentDyeType = computed(
|
||||
() =>
|
||||
Object.values(dyes.dyes).filter(d => d !== dyes.dyes.black)[
|
||||
Object.values(dyes.dyes).filter(d => d !== dyes.dyes.black && d !== dyes.dyes.white)[
|
||||
new Decimal(ribbon.value).toNumber() % 6
|
||||
]
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue