diff --git a/OpenRA.Mods.Common/Traits/Mobile.cs b/OpenRA.Mods.Common/Traits/Mobile.cs index db005ee978..ee58b79697 100644 --- a/OpenRA.Mods.Common/Traits/Mobile.cs +++ b/OpenRA.Mods.Common/Traits/Mobile.cs @@ -587,7 +587,7 @@ namespace OpenRA.Mods.Common.Traits public void EnteringCell(Actor self) { // Only make actor crush if it is on the ground - if (self.CenterPosition.Z != 0) + if (!self.IsAtGroundLevel()) return; var crushables = self.World.ActorMap.GetActorsAt(ToCell).Where(a => a != self)