This commit is contained in:
Matthias Mailänder
2014-01-26 07:54:52 +01:00
committed by Matthias Mailänder
parent e344b95a6f
commit 16ddecdcbf
2 changed files with 17 additions and 15 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