messages.info("ConstructTestCityAction", "CityAR",
"You can't build more than one city on a field!");
} else {
Nation activeNation = Game.getGame().getActiveNation();
if (activeNation != null) {
ConstructCity newCityChange
= new ConstructCity(field.getPosition(),
Game.getGame().getActiveNation());
newCityChange.execute();
SetPopulation setPopulation
= new SetPopulation(field.getPosition(), 1000);
setPopulation.execute();
SetFieldRuledByCity change
= new SetFieldRuledByCity(field.getPosition(),
newCityChange.getCity(),
false);
change.execute();
} else {
Messages.getMessages().info("ConstructTestCity", "QMapWarn",
"When constructing test city: "