diff options
author | Linnea Gräf <nea@nea.moe> | 2025-06-07 23:28:02 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-06-07 23:28:02 +0200 |
commit | d8472888c0d030d745f2970802fe315ef8ca2a20 (patch) | |
tree | 59f599c151fe771287746a85bfc83f5ee1553f57 /src/main/kotlin/features | |
parent | 029fd1527816a05de1a81efbc93fca37f2cb3411 (diff) | |
download | Firmament-d8472888c0d030d745f2970802fe315ef8ca2a20.tar.gz Firmament-d8472888c0d030d745f2970802fe315ef8ca2a20.tar.bz2 Firmament-d8472888c0d030d745f2970802fe315ef8ca2a20.zip |
fix: some modifier keybinds not working
fixes https://github.com/nea89o/Firmament/issues/107
Diffstat (limited to 'src/main/kotlin/features')
-rw-r--r-- | src/main/kotlin/features/inventory/PriceData.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |