We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95beed1 commit 5fd4560Copy full SHA for 5fd4560
common/src/main/kotlin/com/lambda/util/Communication.kt
@@ -151,7 +151,12 @@ object Communication {
151
literal("\n")
152
literal("Keybind: ")
153
color(GuiSettings.primaryColor) {
154
- literal(module.keybind.keyCode.toString())
+ if (module.keybind.keyCode != -1) {
155
+ literal(module.keybind.keyCode.toString())
156
+ } else {
157
+ literal("Unbound")
158
+ }
159
+
160
}
161
162
literal("Default tags: ")
0 commit comments