Clear dirty blocking cells after updating.

This commit is contained in:
Paul Chote
2019-07-27 09:56:37 +01:00
committed by reaperrr
parent 6345655bb1
commit 2f99512bd4

View File

@@ -446,7 +446,10 @@ namespace OpenRA.Mods.Common.Traits
self.World.AddFrameEndTask(s =>
{
if (CellsUpdated != null)
{
CellsUpdated(updatedCells);
updatedCells.Clear();
}
});
}