Render ore when gps is enabled
This commit is contained in:
@@ -58,7 +58,10 @@ namespace OpenRA.Traits
|
||||
for (int x = minx; x < maxx; x++)
|
||||
for (int y = miny; y < maxy; y++)
|
||||
{
|
||||
if (world.LocalPlayer != null && !world.LocalPlayer.Shroud.IsExplored(new int2(x, y))) continue;
|
||||
if (world.LocalPlayer != null &&
|
||||
!world.LocalPlayer.Shroud.IsExplored(new int2(x, y)) &&
|
||||
!world.LocalPlayer.Shroud.Disabled)
|
||||
continue;
|
||||
|
||||
var c = content[x, y];
|
||||
if (c.image != null)
|
||||
|
||||
Reference in New Issue
Block a user