{
List<IConfigElement> list = new ArrayList<IConfigElement>();
for (IPlanetsModule module : GalacticraftPlanets.commonModules.values())
{
list.addAll(new ConfigElement(module.getConfiguration().getCategory(Constants.CONFIG_CATEGORY_DIMENSIONS)).getChildElements());
}
for (IPlanetsModule module : GalacticraftPlanets.commonModules.values())
{
list.addAll(new ConfigElement(module.getConfiguration().getCategory(Constants.CONFIG_CATEGORY_ENTITIES)).getChildElements());
}
for (IPlanetsModule module : GalacticraftPlanets.commonModules.values())
{
list.addAll(new ConfigElement(module.getConfiguration().getCategory(Constants.CONFIG_CATEGORY_ACHIEVEMENTS)).getChildElements());
}
for (IPlanetsModule module : GalacticraftPlanets.commonModules.values())
{
list.addAll(new ConfigElement(module.getConfiguration().getCategory(Constants.CONFIG_CATEGORY_ENTITIES)).getChildElements());
}
for (IPlanetsModule module : GalacticraftPlanets.commonModules.values())
{
list.addAll(new ConfigElement(module.getConfiguration().getCategory(Constants.CONFIG_CATEGORY_GENERAL)).getChildElements());
}
return list;
}