final CommonProxy proxy = Extrabiomes.proxy;
for( BlockCropRegrow.CropType type : BlockCropRegrow.CropType.values() ) {
final String name = type.name();
final BlockSettings plant_settings;
final Element plant_element;
final Element crop_element;
try {
plant_settings = BlockSettings.valueOf(name);
if(!plant_settings.getEnabled()) continue;
plant_element = Element.valueOf("PLANT_" + name);
crop_element = Element.valueOf("CROP_" + name);
} catch( Exception e ) {
LogHelper.warning("Missing settings or elements for plant " + type);