remove spurious constructor from MoveAdjacentTo

This commit is contained in:
Chris Forbes
2011-09-17 11:24:39 +12:00
parent 24c74dcdd9
commit 9480846250
6 changed files with 17 additions and 17 deletions

View File

@@ -21,7 +21,6 @@ namespace OpenRA.Mods.RA.Activities
{
readonly Target target;
public MoveAdjacentTo( Actor target ) { this.target = Target.FromActor(target); }
public MoveAdjacentTo( Target target ) { this.target = target; }
public override Activity Tick( Actor self )