remove more ctors

This commit is contained in:
Chris Forbes
2010-11-23 15:30:21 +13:00
parent 30fb1250b3
commit 7b5be4a0ec
2 changed files with 5 additions and 5 deletions

View File

@@ -128,7 +128,11 @@ namespace OpenRA.Mods.RA
{
// Cannot chronoshift into unexplored location
if (world.LocalPlayer.Shroud.IsExplored(xy))
yield return new Order("ChronosphereActivate", world.LocalPlayer.PlayerActor, self, xy, false);
yield return new Order("ChronosphereActivate", world.LocalPlayer.PlayerActor, false)
{
TargetActor = self,
TargetLocation = xy
};
}
public void Tick(World world)