diff --git a/PeopleVille/WorldBuilder/WorldBuilder.cs b/PeopleVille/WorldBuilder/WorldBuilder.cs index 73e9f5e..71a6bf6 100644 --- a/PeopleVille/WorldBuilder/WorldBuilder.cs +++ b/PeopleVille/WorldBuilder/WorldBuilder.cs @@ -15,14 +15,14 @@ namespace PeopleVille.WorldBuilder public ICitizenBuilder CreateAdult(string name, int health) { - person = new AdultCitizen { Name = name, Health = health, Inventory = new List() }; + person = new AdultCitizen { Name = name, Health = health, Inventory = new List() }; Citizens.Add(person); return this; } public ICitizenBuilder CreateChild(string name, int health) { - person = new ChildCitizen { Name = name, Health = health, Inventory = new List() }; + person = new ChildCitizen { Name = name, Health = health, Inventory = new List() }; Citizens.Add(person); return this; }