Skip to content

Commit 7667d40

Browse files
committed
Fix GUI disable on enable
1 parent 8c4047d commit 7667d40

File tree

1 file changed

+1
-1
lines changed
  • common/src/main/kotlin/com/lambda/module/modules/client

1 file changed

+1
-1
lines changed

common/src/main/kotlin/com/lambda/module/modules/client/ClickGui.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object ClickGui : Module(
4646
LambdaHudGui.close()
4747
}
4848

49-
listener<KeyPressEvent> { event ->
49+
listener<KeyPressEvent>(priority = Int.MAX_VALUE) { event ->
5050
if (mc.options.commandKey.isPressed) return@listener
5151
if (keybind == KeyCode.UNBOUND) return@listener
5252
if (event.translated != keybind) return@listener

0 commit comments

Comments
 (0)