Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
this noslow is patched
Browse files Browse the repository at this point in the history
  • Loading branch information
ManInMyVan committed Jul 17, 2024
1 parent 839e1eb commit 3dc956e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object NoSlow : Module("NoSlow", MOVEMENT, gameDetecting = false) {
WatchDog2,
Medusa,
Drop,
Grim,
Grim2365,
).sortedBy { it.modeName }
private val consumeModes = arrayOf(
Vanilla,
Expand All @@ -66,7 +66,7 @@ object NoSlow : Module("NoSlow", MOVEMENT, gameDetecting = false) {
EmptyPlace,
Medusa,
Drop,
Grim,
Grim2365,
).sortedBy { it.modeName }
private val bowModes = arrayOf(
Vanilla,
Expand All @@ -78,7 +78,7 @@ object NoSlow : Module("NoSlow", MOVEMENT, gameDetecting = false) {
EmptyPlace,
Medusa,
Drop,
Grim,
Grim2365,
).sortedBy { it.modeName }

private val noNoMoveCheck = setOf(
Expand Down Expand Up @@ -209,7 +209,7 @@ object NoSlow : Module("NoSlow", MOVEMENT, gameDetecting = false) {
else -> bowDropWaitForPacket
}) return false

if (mode == Grim && Grim.slow)
if (mode == Grim2365 && Grim2365.slow)
return false

return true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import net.ccbluex.liquidbounce.utils.extensions.canUse
import net.ccbluex.liquidbounce.utils.inventory.InventoryUtils.serverSlot
import net.minecraft.network.play.client.C08PacketPlayerBlockPlacement

object Grim : NoSlowMode("Grim") {
object Grim2365 : NoSlowMode("Grim2.3.65") {
var slow = false
override fun onMotion(event: MotionEvent) {
if (event.eventState != PRE) return
Expand Down

0 comments on commit 3dc956e

Please sign in to comment.