Rename the Country trait to Faction

This commit is contained in:
penev92
2015-07-06 01:48:54 +03:00
parent b58d1037ea
commit a1af5386e0
7 changed files with 17 additions and 17 deletions

View File

@@ -29,7 +29,7 @@ namespace OpenRA
public MapPlayers(Ruleset rules, int playerCount)
{
var firstRace = rules.Actors["world"].Traits
.WithInterface<CountryInfo>().First(c => c.Selectable).Race;
.WithInterface<FactionInfo>().First(f => f.Selectable).Race;
Players = new Dictionary<string, PlayerReference>
{