Fix merge issue
This commit is contained in:
parent
7df42f3185
commit
18de3d9f32
1 changed files with 5 additions and 4 deletions
|
@ -7,7 +7,7 @@ import Row from "components/layout/Row.vue";
|
|||
import Spacer from "components/layout/Spacer.vue";
|
||||
import Sticky from "components/layout/Sticky.vue";
|
||||
import VerticalRule from "components/layout/VerticalRule.vue";
|
||||
import { createLayerTreeNode, createResetButton, modifierToFormula } from "data/common";
|
||||
import { createLayerTreeNode, createResetButton } from "data/common";
|
||||
import { main } from "data/projEntry";
|
||||
import themes from "data/themes";
|
||||
import { createBar } from "features/bars/bar";
|
||||
|
@ -52,6 +52,7 @@ import { ComputedRef, Ref, computed, ref, unref } from "vue";
|
|||
import f from "./f";
|
||||
import { ProcessedComputable } from "util/computed";
|
||||
import { createAchievement } from "features/achievements/achievement";
|
||||
import { InvertibleFormula } from "game/formulas/types";
|
||||
|
||||
const id = "c";
|
||||
const layer = createLayer(id, () => {
|
||||
|
@ -374,13 +375,13 @@ const layer = createLayer(id, () => {
|
|||
]);
|
||||
const conversion = createCumulativeConversion(() => ({
|
||||
formula: x =>
|
||||
modifierToFormula(
|
||||
conversionModifier,
|
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
conversionModifier.getFormula!(
|
||||
x
|
||||
.div(10)
|
||||
.sqrt()
|
||||
.step(1e100, f => f.sqrt())
|
||||
),
|
||||
) as InvertibleFormula,
|
||||
baseResource: main.points,
|
||||
gainResource: noPersist(points),
|
||||
roundUpCost: true
|
||||
|
|
Loading…
Reference in a new issue