From c466595337423e6d4a9c3c9fc5080a152b57914f Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Wed, 1 May 2024 17:05:34 +1000 Subject: fix calculation (#1612) --- .../features/inventory/chocolatefactory/ChocolateFactoryTooltip.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/chocolatefactory/ChocolateFactoryTooltip.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/chocolatefactory/ChocolateFactoryTooltip.kt index 9d556f64b..7bd7fd90f 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/chocolatefactory/ChocolateFactoryTooltip.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/chocolatefactory/ChocolateFactoryTooltip.kt @@ -71,7 +71,7 @@ object ChocolateFactoryTooltip { ): Double { val profileStorage = profileStorage ?: return 0.0 - val baseMultiplier = profileStorage.chocolateMultiplier + baseMultiplierIncrease + val baseMultiplier = profileStorage.rawChocolateMultiplier + baseMultiplierIncrease val rawPerSecond = profileStorage.rawChocPerSecond + rawPerSecondIncrease val timeTowerLevel = profileStorage.timeTowerLevel + timeTowerLevelIncrease -- cgit