Don’t clear shroud outside the map. Fixes #6097.

This commit is contained in:
Paul Chote
2014-08-23 09:53:27 +12:00
parent 6fcd4c3605
commit 80c4870a0f

View File

@@ -217,7 +217,8 @@ namespace OpenRA.Traits
public void ExploreAll(World world) public void ExploreAll(World world)
{ {
explored.Clear(true); foreach (var cell in map.Cells)
explored[cell] = true;
Invalidate(); Invalidate();
} }