From d8472888c0d030d745f2970802fe315ef8ca2a20 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sat, 7 Jun 2025 23:28:02 +0200 Subject: fix: some modifier keybinds not working fixes https://github.com/nea89o/Firmament/issues/107 --- src/main/kotlin/features/inventory/PriceData.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/features') diff --git a/src/main/kotlin/features/inventory/PriceData.kt b/src/main/kotlin/features/inventory/PriceData.kt index 77ea03c..804d741 100644 --- a/src/main/kotlin/features/inventory/PriceData.kt +++ b/src/main/kotlin/features/inventory/PriceData.kt @@ -48,7 +48,7 @@ object PriceData : FirmamentFeature { } val sbId = it.stack.skyBlockId val stackSize = it.stack.count - val isShowingStack = TConfig.stackSizeKey.isPressed(atLeast = true) + val isShowingStack = TConfig.stackSizeKey.isPressed() val multiplier = if (isShowingStack) stackSize else 1 val multiplierText = if (isShowingStack) -- cgit