Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Velocity: NoBlockPush #435

Merged
merged 4 commits into from
Dec 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 10 additions & 0 deletions src/main/java/com/lambda/mixin/player/MixinEntityPlayerSP.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import com.lambda.client.event.LambdaEventBus;
import com.lambda.client.event.events.OnUpdateWalkingPlayerEvent;
import com.lambda.client.event.events.PlayerMoveEvent;
import com.lambda.client.event.events.PushOutOfBlocksEvent;
import com.lambda.client.gui.mc.LambdaGuiBeacon;
import com.lambda.client.manager.managers.MessageManager;
import com.lambda.client.manager.managers.PlayerPacketManager;
Expand Down Expand Up @@ -70,6 +71,15 @@ public void closeScreen(Minecraft minecraft, GuiScreen screen) {
if (PortalChat.INSTANCE.isDisabled()) Wrapper.getMinecraft().displayGuiScreen(screen);
}

@Inject(method = "pushOutOfBlocks", at = @At("HEAD"), cancellable = true)
private void onPushOutOfBlocks(CallbackInfoReturnable<Boolean> callbackInfoReturnable) {
PushOutOfBlocksEvent event = new PushOutOfBlocksEvent();
LambdaEventBus.INSTANCE.post(event);
if (event.getCancelled()) {
callbackInfoReturnable.setReturnValue(false);
}
}

/**
* @author TBM
* Used with full permission from TBM - l1ving
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.lambda.client.event.events

import com.lambda.client.event.*

class PushOutOfBlocksEvent : Event, ICancellable by Cancellable()
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.lambda.client.module.modules.movement

import com.lambda.client.event.events.PacketEvent
import com.lambda.client.event.events.PushOutOfBlocksEvent
import com.lambda.client.mixin.extension.*
import com.lambda.client.module.Category
import com.lambda.client.module.Module
Expand Down Expand Up @@ -31,6 +32,7 @@ object Velocity : Module(
private val noPush by setting("No Push", true)
private val entity by setting("Entity", true, { noPush })
private val liquid by setting("Liquid", true, { noPush })
private val block by setting("Block", false, { noPush })

init {
safeListener<PacketEvent.Receive> {
Expand All @@ -57,6 +59,10 @@ object Velocity : Module(
}
}
}

safeListener<PushOutOfBlocksEvent> {
if (block) it.cancel()
}
}

private val isZero get() = horizontal == 0.0f && vertical == 0.0f
Expand Down