Skip to content

Commit

Permalink
Remove FullNoClip as they won't work on servers (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexadecimal233 authored Jul 11, 2023
1 parent 950dece commit 02da1f5
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 69 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
- Coord Logger (World events from [JexClient](https://github.com/DustinRepo/JexClient-main/blob/main/src/main/java/me/dustin/jex/feature/mod/impl/misc/CoordFinder.java))
- Custom Packets
- Extra Elytra (Ported from [Wurst](https://github.com/Wurst-Imperium/Wurst7/tree))
- FullNoClip
- FullFlight (Antikick bypasses by [CCblueX](https://github.com/CCblueX) and [LiveOverflow](https://github.com/LiveOverflow))
- Gamemode notifier
- Ghost Mode (Taken from an [unmerged PR](https://github.com/MeteorDevelopment/meteor-client/pull/1932))
Expand Down
1 change: 0 additions & 1 deletion src/main/java/anticope/rejects/MeteorRejectsAddon.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public void onInitialize() {
modules.add(new CoordLogger());
modules.add(new CustomPackets());
modules.add(new ExtraElytra());
modules.add(new FullNoClip());
modules.add(new FullFlight());
modules.add(new GamemodeNotifier());
modules.add(new GhostMode());
Expand Down
20 changes: 0 additions & 20 deletions src/main/java/anticope/rejects/mixin/EntityMixin.java

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/java/anticope/rejects/mixin/PlayerEntityMixin.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
package anticope.rejects.mixin;

import anticope.rejects.events.OffGroundSpeedEvent;
import anticope.rejects.modules.FullNoClip;
import meteordevelopment.meteorclient.systems.modules.Modules;
import meteordevelopment.meteorclient.MeteorClient;
import net.minecraft.entity.player.PlayerEntity;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.Redirect;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

@Mixin(PlayerEntity.class)
Expand All @@ -17,8 +14,4 @@ public class PlayerEntityMixin {
private void onGetOffGroundSpeed(CallbackInfoReturnable<Float> cir) {
cir.setReturnValue(MeteorClient.EVENT_BUS.post(OffGroundSpeedEvent.get(cir.getReturnValueF())).speed);
}
@Redirect(method = {"tick", "updatePose"}, at = @At(value = "INVOKE", target = "Lnet/minecraft/entity/player/PlayerEntity;isSpectator()Z"))
private boolean FullNoClip(PlayerEntity player) {
return player.isSpectator() || Modules.get().isActive(FullNoClip.class);
}
}
39 changes: 0 additions & 39 deletions src/main/java/anticope/rejects/modules/FullNoClip.java

This file was deleted.

1 change: 0 additions & 1 deletion src/main/resources/meteor-rejects.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"CommandSuggestorMixin",
"Deadmau5FeatureRendererMixin",
"EntityAccessor",
"EntityMixin",
"GameRendererMixin",
"LivingEntityMixin",
"LivingEntityRendererMixin",
Expand Down

1 comment on commit 02da1f5

@yorik100
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does work? If you cover yourself in sand, you can noclip

Please sign in to comment.