mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-02-07 18:51:35 +00:00
Fix paper upgrades not appearing
This commit is contained in:
parent
52498335a6
commit
fd6becd727
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ import { createMultiplicativeModifier, createSequentialModifier, Modifier } from
|
||||||
import { noPersist } from "game/persistence";
|
import { noPersist } from "game/persistence";
|
||||||
import Decimal, { DecimalSource, format, formatSmall, formatWhole } from "util/bignum";
|
import Decimal, { DecimalSource, format, formatSmall, formatWhole } from "util/bignum";
|
||||||
import { WithRequired } from "util/common";
|
import { WithRequired } from "util/common";
|
||||||
import { render, renderCol, renderRow } from "util/vue";
|
import { render, renderCol, renderGrid, renderRow } from "util/vue";
|
||||||
import { computed, ComputedRef, ref, unref } from "vue";
|
import { computed, ComputedRef, ref, unref } from "vue";
|
||||||
import cloth from "./cloth";
|
import cloth from "./cloth";
|
||||||
import coal from "./coal";
|
import coal from "./coal";
|
||||||
|
@ -486,7 +486,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
<Spacer />
|
<Spacer />
|
||||||
{render(makePaper)}
|
{render(makePaper)}
|
||||||
<Spacer />
|
<Spacer />
|
||||||
{renderRow(...Object.values(upgrades))}
|
{renderGrid(Object.values(upgrades), Object.values(upgrades2))}
|
||||||
<Spacer />
|
<Spacer />
|
||||||
{renderCol(...Object.values(books))}
|
{renderCol(...Object.values(books))}
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Add table
Reference in a new issue