From ba475d57a0bf15087d0489dbc6116731060764a1 Mon Sep 17 00:00:00 2001 From: Dg636 Date: Mon, 4 Dec 2023 22:51:27 -0500 Subject: [PATCH] Update HypixelBlinkNofall.kt --- .../modules/player/nofalls/other/HypixelBlinkNofall.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/ccbluex/liquidbounce/features/module/modules/player/nofalls/other/HypixelBlinkNofall.kt b/src/main/java/net/ccbluex/liquidbounce/features/module/modules/player/nofalls/other/HypixelBlinkNofall.kt index 713566f827..0ee7b33044 100644 --- a/src/main/java/net/ccbluex/liquidbounce/features/module/modules/player/nofalls/other/HypixelBlinkNofall.kt +++ b/src/main/java/net/ccbluex/liquidbounce/features/module/modules/player/nofalls/other/HypixelBlinkNofall.kt @@ -7,7 +7,6 @@ import net.minecraft.network.play.client.C03PacketPlayer import net.ccbluex.liquidbounce.utils.BlinkUtils class HypixelBlinkNofall : NoFallMode("HypixelBlink") { - val blink = LiquidBounce.moduleManager[Blink::class.java]!! private var enabled = false @@ -19,10 +18,10 @@ class HypixelBlinkNofall : NoFallMode("HypixelBlink") { if (mc.thePlayer.fallDistance > 1.5) { if (!enabled) { BlinkUtils.setBlinkState(all = true) - enabed = true + enabled = true } } else { - enbaed = false + enabled = false } if(enabled && event.packet is C03PacketPlayer) { event.packet.onGround = true