Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
trolled
  • Loading branch information
Doogie13 committed Jul 9, 2023
commit 36b8823fbb0f93bf1d5b288c49a58b090a4b5ae6
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ object Burrow : Module(
private val strength by setting("Strength", 20, 1..50, 1,
description = "Strength of the rubberband, higher meaning more likely to work but flags more afterwards",
visibility = { packetMode == PacketMode.ALTERNATIVE || packetMode == PacketMode.SPIN })
private val bladeFunny by setting("Dip Bypass", false,
description = "Bypasses with a dip", visibility = { packetMode != PacketMode.NONE })

// QOL
private val smooth by setting("Smooth", true,
Expand Down Expand Up @@ -264,8 +262,7 @@ object Burrow : Module(
world.setBlockState(BlockPos(player.posX, player.posY, player.posZ),
(player.hotbarSlots[slot].stack.item as ItemBlock).block.defaultState)
player.setPosition(player.posX, player.posY + 1, player.posZ)
} else if (bladeFunny)
sendPos(0.99)
}

// account for timer, alternative needs us to flag timer so we don't care about it
if (noTimerFlag && packetMode != PacketMode.ALTERNATIVE) {
Expand Down