From 2deef8decc42c6b5b3eebcf52894b96f1b7bc531 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 14 May 2023 12:52:10 -0500 Subject: [PATCH] Fix repeatables cost bug --- src/data/planes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/planes.tsx b/src/data/planes.tsx index 5f89e52..bfe4cb8 100644 --- a/src/data/planes.tsx +++ b/src/data/planes.tsx @@ -390,7 +390,7 @@ export function createPlane( description = `Multiply previous ${ resource.displayName } gain by x${format(multiplier)}.`; - cost = costInput.add(1).times(initialCost); + cost = costInput.add(1).pow_base(multiplier).times(initialCost); const prevGain = previousGain; costFormula = costFormula.add( computed(() =>