From a7772412ebbb3612b6278fac005f05bdf7a8d676 Mon Sep 17 00:00:00 2001 From: Frko5000 Date: Sun, 14 Jun 2026 13:35:10 +0300 Subject: [PATCH 1/2] Bug Fix --- .../meteorclient/systems/modules/combat/KillAura.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java b/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java index 0fad30188c..339b767117 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java @@ -418,7 +418,7 @@ private boolean entityCheck(Entity entity) { ) return false; } if (ignorePassive.get()) { - if (entity instanceof EnderMan enderman && !enderman.isAngry()) return false; + if (entity instanceof EnderMan enderman && !enderman.isAggressive()) return false; if ((entity instanceof Piglin || entity instanceof ZombifiedPiglin || entity instanceof Wolf) && !((Mob) entity).isAggressive()) return false; } From c40970d48628f26c9e955aa62c025a4ef9ecae05 Mon Sep 17 00:00:00 2001 From: Wide_Cat Date: Mon, 15 Jun 2026 00:25:08 +0100 Subject: [PATCH 2/2] Update which method it uses --- .../meteorclient/systems/modules/combat/KillAura.java | 2 +- .../meteorclient/systems/modules/world/EndermanLook.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java b/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java index 339b767117..0bdbc5d76d 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java @@ -418,7 +418,7 @@ private boolean entityCheck(Entity entity) { ) return false; } if (ignorePassive.get()) { - if (entity instanceof EnderMan enderman && !enderman.isAggressive()) return false; + if (entity instanceof EnderMan enderman && !enderman.isCreepy()) return false; if ((entity instanceof Piglin || entity instanceof ZombifiedPiglin || entity instanceof Wolf) && !((Mob) entity).isAggressive()) return false; } diff --git a/src/main/java/meteordevelopment/meteorclient/systems/modules/world/EndermanLook.java b/src/main/java/meteordevelopment/meteorclient/systems/modules/world/EndermanLook.java index 686ece4cc3..c4537d27e4 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/world/EndermanLook.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/world/EndermanLook.java @@ -15,11 +15,11 @@ import meteordevelopment.meteorclient.utils.entity.Target; import meteordevelopment.meteorclient.utils.player.Rotations; import meteordevelopment.orbit.EventHandler; +import net.minecraft.tags.ItemTags; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EquipmentSlot; import net.minecraft.world.entity.monster.EnderMan; import net.minecraft.world.entity.player.Player; -import net.minecraft.world.level.block.Blocks; import net.minecraft.world.phys.Vec3; public class EndermanLook extends Module { @@ -47,7 +47,7 @@ public EndermanLook() { @EventHandler private void onTick(TickEvent.Pre event) { // if either are true nothing happens when you look at an enderman - if (mc.player.getItemBySlot(EquipmentSlot.HEAD).is(Blocks.CARVED_PUMPKIN.asItem()) || mc.player.getAbilities().instabuild) + if (mc.player.getItemBySlot(EquipmentSlot.HEAD).is(ItemTags.GAZE_DISGUISE_EQUIPMENT) || mc.player.getAbilities().instabuild) return; for (Entity entity : mc.level.entitiesForRendering()) { @@ -56,12 +56,12 @@ private void onTick(TickEvent.Pre event) { switch (lookMode.get()) { case Away -> { - if (enderman.isAngry() && stun.get()) + if (enderman.isCreepy() && stun.get()) Rotations.rotate(Rotations.getYaw(enderman), Rotations.getPitch(enderman, Target.Head), -75, null); else if (angleCheck(enderman)) Rotations.rotate(mc.player.getYRot(), 90, -75, null); } case At -> { - if (!enderman.isAngry()) + if (!enderman.isCreepy()) Rotations.rotate(Rotations.getYaw(enderman), Rotations.getPitch(enderman, Target.Head), -75, null); } }