LayMines: render minefield cells only if the planned minefield has more than 1 cell
This commit is contained in:
@@ -157,8 +157,9 @@ namespace OpenRA.Mods.Common.Activities
|
|||||||
if (nextCell != null)
|
if (nextCell != null)
|
||||||
yield return new TargetLineNode(Target.FromCell(self.World, nextCell.Value), minelayer.Info.TargetLineColor);
|
yield return new TargetLineNode(Target.FromCell(self.World, nextCell.Value), minelayer.Info.TargetLineColor);
|
||||||
|
|
||||||
foreach (var c in minefield)
|
if (minefield.Count > 1)
|
||||||
yield return new TargetLineNode(Target.FromCell(self.World, c), minelayer.Info.TargetLineColor, tile: minelayer.Tile);
|
foreach (var c in minefield)
|
||||||
|
yield return new TargetLineNode(Target.FromCell(self.World, c), minelayer.Info.TargetLineColor, tile: minelayer.Tile);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool CanLayMine(Actor self, CPos p)
|
static bool CanLayMine(Actor self, CPos p)
|
||||||
|
|||||||
Reference in New Issue
Block a user