Fix subcell crusher logic.

This commit is contained in:
Paul Chote
2020-01-26 13:23:28 +00:00
committed by reaperrr
parent 62af58c2e6
commit 85a5b6cc17
2 changed files with 3 additions and 3 deletions

View File

@@ -560,7 +560,7 @@ namespace OpenRA.Mods.Common.Traits
if (!self.IsAtGroundLevel())
return;
var actors = self.World.ActorMap.GetActorsAt(ToCell).Where(a => a != self).ToList();
var actors = self.World.ActorMap.GetActorsAt(ToCell, ToSubCell).Where(a => a != self).ToList();
if (!AnyCrushables(actors))
return;