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 95ec447 commit 31b0487Copy full SHA for 31b0487
src/main/kotlin/com/lambda/client/module/modules/player/Scaffold.kt
@@ -133,6 +133,10 @@ object Scaffold : Module(
133
(value * 2.5 * maxRange).roundToInt().coerceAtMost(maxRange)
134
135
private fun SafeClientEvent.swap(): Boolean {
136
+ if (player.heldItemMainhand.item is ItemBlock || player.heldItemOffhand.item is ItemBlock) {
137
+ inactiveTicks = 0;
138
+ return true;
139
+ }
140
getBlockSlot()?.let { slot ->
141
if (spoofHotbar) spoofHotbar(slot)
142
else swapToSlot(slot)
0 commit comments