Merge pull request #4499 from Mailaender/gdi02-fixes

GDI02 fixes
This commit is contained in:
Paul Chote
2014-02-07 23:13:13 +13:00
3 changed files with 19 additions and 18 deletions

View File

@@ -45,7 +45,7 @@ namespace OpenRA.Mods.RA
if (init.Contains<CargoInit>())
{
cargo = init.Get<CargoInit,Actor[]>().ToList();
cargo = init.Get<CargoInit, Actor[]>().ToList();
totalWeight = cargo.Sum(c => GetWeight(c));
}
else