diff --git a/core/src/mindustry/entities/comp/LegsComp.java b/core/src/mindustry/entities/comp/LegsComp.java index 81073abc1f..f147217c57 100644 --- a/core/src/mindustry/entities/comp/LegsComp.java +++ b/core/src/mindustry/entities/comp/LegsComp.java @@ -36,7 +36,7 @@ abstract class LegsComp implements Posc, Rotc, Hitboxc, Flyingc, Unitc{ @Override @Replace public int pathType(){ - return type.allowLegStep ? Pathfinder.costGround : Pathfinder.costLegs; + return type.allowLegStep ? Pathfinder.costLegs : Pathfinder.costGround; } @Override