mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-12-03 13:21:31 +00:00
Merge branch 'main' into day-24-packing
This commit is contained in:
commit
25322ab9e6
2 changed files with 9 additions and 2 deletions
|
@ -912,6 +912,13 @@ const factory = createLayer(id, () => {
|
|||
}
|
||||
|
||||
while (times > 0) {
|
||||
if (
|
||||
!Object.values(allToys).some(i =>
|
||||
Decimal.gte(i.value, computedToyMultiplier.value)
|
||||
)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
while (Decimal.lt(value[toysIndex].value, computedToyMultiplier.value)) {
|
||||
toysIndex = (toysIndex + 1) % value.length;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<panZoom
|
||||
v-if="visibility !== Visibility.None"
|
||||
v-show="visibility === Visibility.Visible"
|
||||
v-if="unref(visibility) !== Visibility.None"
|
||||
v-show="unref(visibility) === Visibility.Visible"
|
||||
:style="[
|
||||
{
|
||||
width,
|
||||
|
|
Loading…
Reference in a new issue