From e6b8f1ea5927d0b118a95e2b33f033855c71ae8e Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 2 Apr 2023 22:03:58 -0500 Subject: [PATCH] Updated prestige layer to new conversion --- src/features/conversion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/conversion.ts b/src/features/conversion.ts index 9eeb792..1ccf26b 100644 --- a/src/features/conversion.ts +++ b/src/features/conversion.ts @@ -92,6 +92,7 @@ export interface BaseConversion { export type Conversion = Replace< T & BaseConversion, { + formula: InvertibleFormula; currentGain: GetComputableTypeWithDefault>; actualGain: GetComputableTypeWithDefault>; currentAt: GetComputableTypeWithDefault>; @@ -105,7 +106,6 @@ export type Conversion = Replace< export type GenericConversion = Replace< Conversion, { - formula: InvertibleFormula; currentGain: ProcessedComputable; actualGain: ProcessedComputable; currentAt: ProcessedComputable;