mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-03-14 01:51:40 +00:00
Add notif to dyes when reset
This commit is contained in:
parent
ad0b9fec37
commit
044ba23617
2 changed files with 3 additions and 0 deletions
|
@ -195,6 +195,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
(["red", "yellow", "blue", "orange", "green", "purple"] as const).forEach(dyeColor => {
|
||||
dyes.dyes[dyeColor].amount.value = 0;
|
||||
dyes.dyes[dyeColor].buyable.amount.value = 0;
|
||||
main.days[10].recentlyUpdated.value = true;
|
||||
});
|
||||
}
|
||||
})) as GenericUpgrade;
|
||||
|
|
|
@ -848,6 +848,7 @@ const layer = createLayer(id, () => {
|
|||
dyeColor => {
|
||||
dyes.dyes[dyeColor].amount.value = 0;
|
||||
dyes.dyes[dyeColor].buyable.amount.value = 0;
|
||||
main.days[10].recentlyUpdated.value = true;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
@ -864,6 +865,7 @@ const layer = createLayer(id, () => {
|
|||
(["red", "yellow", "blue"] as const).forEach(dyeColor => {
|
||||
dyes.dyes[dyeColor].amount.value = 0;
|
||||
dyes.dyes[dyeColor].buyable.amount.value = 0;
|
||||
main.days[10].recentlyUpdated.value = true;
|
||||
});
|
||||
}
|
||||
})),
|
||||
|
|
Loading…
Add table
Reference in a new issue