private static void loadSettings(ExtrabiomesConfig config) {
    settingsLoaded = true;

    for (final VanillaBiome biome : VanillaBiome.values()) {

      Property property = config.get(ExtrabiomesConfig.CATEGORY_BIOME, biome.enabledKey(), true);
      if (property.getBoolean(false)) biome.enableGeneration = true;

      property = config.get(ExtrabiomesConfig.CATEGORY_BIOME, biome.villagesKey(), true);
      if (property.getBoolean(false)) biome.enableVillages = true;
    }
  }