diff --git a/core/src/mindustry/type/UnitType.java b/core/src/mindustry/type/UnitType.java index 9c13066887..ee2e01a4de 100644 --- a/core/src/mindustry/type/UnitType.java +++ b/core/src/mindustry/type/UnitType.java @@ -684,8 +684,8 @@ public class UnitType extends UnlockableContent{ if(pathCost == null){ pathCost = - example instanceof WaterMovec ? ControlPathfinder.costNaval : - allowLegStep ? ControlPathfinder.costLegs : + naval ? ControlPathfinder.costNaval : + allowLegStep || example instanceof Crawlc ? ControlPathfinder.costLegs : hovering ? ControlPathfinder.costHover : ControlPathfinder.costGround; }