Mercurial > repos > IBBoard.WarFoundry.API
changeset 475:b2c818833841
* Apply correct fix for .Net2 vs .Net4 issue
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 21 Apr 2012 15:53:24 +0100 |
parents | e47cb422aac1 |
children | 81e130f3b85e |
files | API/Commands/CreateAndAddUnitCommand.cs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 }