From 422c009eb8fd7581d9cb2eea0160650d55d72e28 Mon Sep 17 00:00:00 2001 From: umutcagand <237324081+c8dhjp4tyv-bit@users.noreply.github.com> Date: Thu, 3 Sep 2026 07:30:54 +0300 Subject: [PATCH] Fixed KillAura ignoring the passive mob age filter The 26.2 update moved the age filters onto EntityAgeTest.test(), but the passive branch of entityCheck() lost its return in the process, so the result is computed and discarded and the method always falls through to return true. passive-mob-age-filter has had no effect on any ageable mob since then; the hostile branch right above it still returns correctly. --- .../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 44b7ab9c135..5efae07ceb1 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java @@ -437,7 +437,7 @@ private boolean entityCheck(Entity entity) { } // Passive mobs with baby variants (animals, villagers) if (entity instanceof AgeableMob && (!(entity instanceof Frog || entity instanceof Parrot))) { - passiveMobAgeFilter.get().test(livingEntity); + return passiveMobAgeFilter.get().test(livingEntity); } } return true;