Feature (Module): Add BetterFirework Module by IceTank · Pull Request #154 · lambda-client/lambda · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/main/java/com/lambda/mixin/MinecraftClientMixin.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ data class Bind(
if (modifiers and GLFW_MOD_NUM_LOCK != 0) add(KeyCode.NumLock)
}

val isMouseBind: Boolean
get() = mouse >= 0

val isKeyBind: Boolean
get() = key > 0

val name: String
get() {
if (mouse < 0 && modifiers <= 0 && key <= 0) return "Unbound"
Expand Down
257 changes: 257 additions & 0 deletions src/main/kotlin/com/lambda/module/modules/movement/BetterFirework.kt
Loading