Skip to content

Commit c9c0fcd

Browse files
authored
Merge pull request MeteorDevelopment#15 from squidoodly/development
Kill Aura
2 parents c3b8660 + d2d9cae commit c9c0fcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/minegame159/meteorclient/modules/combat

src/main/java/minegame159/meteorclient/modules/combat/KillAura.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ public enum Priority {
9696
.min(0)
9797
.sliderMax(60)
9898
.build()
99-
);
10099

101100
private int hitDelayTimer;
102101

@@ -178,6 +177,7 @@ private int sort(LivingEntity e1, LivingEntity e2) {
178177
.filter(entity -> entity.getHealth() > 0)
179178
.min(this::sort)
180179
.ifPresent(entity -> {
180+
if (salt.get() && Math.random() < 0.9) return;
181181
if (rotate.get()) {
182182
((IVec3d) vec3d1).set(entity.x, entity.y + entity.getHeight() / 2, entity.z);
183183
mc.player.lookAt(EntityAnchorArgumentType.EntityAnchor.EYES, vec3d1);

0 commit comments

Comments
 (0)