# HG changeset patch # User IBBoard # Date 1335020004 -3600 # Node ID b2c81883384102654c43ee7c0b6548891d1f662d # Parent e47cb422aac12d9813ae0455a31fc36c0f09711a * Apply correct fix for .Net2 vs .Net4 issue diff -r e47cb422aac1 -r b2c818833841 API/Commands/CreateAndAddUnitCommand.cs --- a/API/Commands/CreateAndAddUnitCommand.cs Sat Apr 21 15:46:26 2012 +0100 +++ b/API/Commands/CreateAndAddUnitCommand.cs Sat Apr 21 15:53:24 2012 +0100 @@ -16,7 +16,7 @@ private Unit addedUnit; private Unit parentUnit; - public CreateAndAddUnitCommand(UnitType toAdd, ArmyCategory armyCatTo) : base(toAdd, armyCatTo, null) + public CreateAndAddUnitCommand(UnitType toAdd, ArmyCategory armyCatTo) : this(toAdd, armyCatTo, null) { //Do nothing special }