for (StatuesSpawnTemplate template : templates)
{
List<Location> locations = spawnLocations.get(template.getCategoryType());
for (Location loc : locations)
{
WinnerStatueInstance statue = new WinnerStatueInstance(IdFactory.getInstance().getNextId(), template);
statue.setLoc(loc);
statue.spawnMe();
spawnedStatues.add(statue);
}
}
}