wrapperController.add(instance);
return instance;
}
public static ICraftingRecipeProvider getWrappedRecipeProvider(String modId, String name, Class<? extends ICraftingRecipeProvider> providerClass) {
ICraftingRecipeProvider provider = null;
Throwable e = null;
if(ModStatusHelper.isModLoaded(modId)) {
try {
provider = providerClass.newInstance();
} catch(Exception e1) {