From f64a45f78deeb68dec0f73603d6132eda2560517 Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 12 May 2022 09:40:03 -0400 Subject: [PATCH] Fixed elude place check --- core/src/mindustry/entities/Units.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/Units.java b/core/src/mindustry/entities/Units.java index 81c036cc12..0a63e265f7 100644 --- a/core/src/mindustry/entities/Units.java +++ b/core/src/mindustry/entities/Units.java @@ -29,7 +29,7 @@ public class Units{ private static float aeX, aeY, aeW, aeH; private static final Cons anyEntityLambda = unit -> { if(boolResult) return; - if((unit.isGrounded() && !unit.hovering) == anyEntityGround){ + if((unit.isGrounded() && !unit.type.allowLegStep) == anyEntityGround){ unit.hitboxTile(hitrect); if(hitrect.overlaps(aeX, aeY, aeW, aeH)){