Skip to content

Commit 421d987

Browse files
authored
Cringe modules removal (#6416)
* Remove Offhand Crash * Remove Mount Bypass
1 parent e0bd2e8 commit 421d987

4 files changed

Lines changed: 0 additions & 111 deletions

File tree

src/main/java/meteordevelopment/meteorclient/mixin/LivingEntityMixin.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import meteordevelopment.meteorclient.systems.modules.movement.elytrafly.ElytraFly;
1717
import meteordevelopment.meteorclient.systems.modules.movement.elytrafly.modes.Bounce;
1818
import meteordevelopment.meteorclient.systems.modules.player.NoStatusEffects;
19-
import meteordevelopment.meteorclient.systems.modules.player.OffhandCrash;
2019
import meteordevelopment.meteorclient.systems.modules.render.HandView;
2120
import meteordevelopment.meteorclient.systems.modules.render.NoRender;
2221
import net.minecraft.core.Holder;
@@ -58,15 +57,6 @@ private void spawnItemParticles(ItemStack itemStack, int count, CallbackInfo ci)
5857
if (noRender.noEatParticles() && itemStack.getComponents().has(DataComponents.FOOD)) ci.cancel();
5958
}
6059

61-
@Inject(method = "onEquipItem", at = @At("HEAD"), cancellable = true)
62-
private void onEquipStack(EquipmentSlot slot, ItemStack oldStack, ItemStack stack, CallbackInfo ci) {
63-
if ((Object) this != mc.player) return;
64-
65-
if (Modules.get().get(OffhandCrash.class).isAntiCrash()) {
66-
ci.cancel();
67-
}
68-
}
69-
7060
@ModifyVariable(method = "swing(Lnet/minecraft/world/InteractionHand;)V", at = @At("HEAD"), argsOnly = true, name = "hand")
7161
private InteractionHand setHand(InteractionHand hand) {
7262
if ((Object) this != mc.player) return hand;

src/main/java/meteordevelopment/meteorclient/systems/modules/Modules.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,6 @@ private void initPlayer() {
449449
add(new NoMiningTrace());
450450
add(new NoRotate());
451451
add(new NoStatusEffects());
452-
add(new OffhandCrash());
453452
add(new Portals());
454453
add(new PotionSaver());
455454
add(new Reach());
@@ -548,7 +547,6 @@ private void initWorld() {
548547
add(new Flamethrower());
549548
add(new HighwayBuilder());
550549
add(new LiquidFiller());
551-
add(new MountBypass());
552550
add(new NoGhostBlocks());
553551
add(new Nuker());
554552
add(new PacketMine());

src/main/java/meteordevelopment/meteorclient/systems/modules/player/OffhandCrash.java

Lines changed: 0 additions & 67 deletions
This file was deleted.

src/main/java/meteordevelopment/meteorclient/systems/modules/world/MountBypass.java

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)