Fixed FullFlight/NoClip (#254)

This commit is contained in:
yorik100
2023-06-15 12:15:45 +02:00
committed by GitHub
parent 27174e76d3
commit 275fa1d16f
4 changed files with 33 additions and 8 deletions

View File

@@ -1,7 +1,6 @@
package anticope.rejects.modules;
import anticope.rejects.MeteorRejectsAddon;
import meteordevelopment.meteorclient.events.world.CollisionShapeEvent;
import meteordevelopment.meteorclient.events.entity.player.PlayerMoveEvent;
import meteordevelopment.meteorclient.mixininterface.IVec3d;
import meteordevelopment.meteorclient.systems.modules.Module;
@@ -32,12 +31,6 @@ public class FullNoClip extends Module {
public FullNoClip() {
super(MeteorRejectsAddon.CATEGORY, "fullnoclip", "FullNoClip.");
}
@EventHandler
private void onCollision(CollisionShapeEvent event) {
if (mc.player.getVehicle() == null)
event.shape = VoxelShapes.empty();
}
private double getDir() {
double dir = 0;