Remove redundant Rules definition from ImportLegacyMapCommand.

This commit is contained in:
Paul Chote
2016-03-01 21:42:21 +00:00
parent 51ceda4e7f
commit 2029f34c86
4 changed files with 11 additions and 13 deletions

View File

@@ -226,7 +226,7 @@ namespace OpenRA.Mods.RA.UtilityCommands
public override void ReadActors(IniFile file)
{
base.ReadActors(file);
LoadActors(file, "SHIPS", Players, MapSize, Rules, Map);
LoadActors(file, "SHIPS", Players, MapSize, Map);
}
}
}