diff --git a/OpenRA.Mods.Common/Traits/Mobile.cs b/OpenRA.Mods.Common/Traits/Mobile.cs index 8884b47685..f3881d6201 100644 --- a/OpenRA.Mods.Common/Traits/Mobile.cs +++ b/OpenRA.Mods.Common/Traits/Mobile.cs @@ -501,7 +501,7 @@ namespace OpenRA.Mods.Common.Traits public bool CanEnterCell(CPos cell, Actor ignoreActor = null, BlockedByActor check = BlockedByActor.All) { - return Info.CanEnterCell(self.World, self, cell, SubCell.FullCell, ignoreActor, check); + return Info.CanEnterCell(self.World, self, cell, ToSubCell, ignoreActor, check); } #endregion