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

Remove FullNoClip as they won't work on servers #274

Merged
merged 1 commit into from
Jul 11, 2023
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
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