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 a4db32e commit d3b6202Copy full SHA for d3b6202
src/main/kotlin/com/lambda/module/modules/movement/Speed.kt
@@ -186,7 +186,11 @@ object Speed : Module(
186
}
187
188
private fun SafeContext.shouldWork(): Boolean {
189
- if (player.abilities.flying || player.isElytraFlying || player.isTouchingWater || player.isInLava) return false
+ if (player.abilities.flying
190
+ || player.isElytraFlying
191
+ || player.isTouchingWater
192
+ || player.isInLava
193
+ || player.hasVehicle()) return false
194
195
return when (mode) {
196
Mode.GRIM_STRAFE -> !player.input.handledByBaritone
0 commit comments