Update to support RC 2.8

This commit is contained in:
modmuss50 2016-11-04 20:03:05 +00:00
parent e19f1c6ca9
commit 603c12590d
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
11 changed files with 77 additions and 50 deletions

View file

@ -38,9 +38,9 @@ public class RollingMachineRecipeWrapper extends BlankRecipeWrapper implements I
} else if (baseRecipe instanceof ShapedRecipes) {
recipeWrapper = new ShapedRecipesWrapper((ShapedRecipes) baseRecipe);
} else if (baseRecipe instanceof ShapedOreRecipe) {
recipeWrapper = new ShapedOreRecipeWrapper((ShapedOreRecipe) baseRecipe);
recipeWrapper = new ShapedOreRecipeWrapper(jeiHelpers, (ShapedOreRecipe) baseRecipe);
} else if (baseRecipe instanceof ShapelessOreRecipe) {
recipeWrapper = new ShapelessOreRecipeWrapper(guiHelper, (ShapelessOreRecipe) baseRecipe);
recipeWrapper = new ShapelessOreRecipeWrapper(jeiHelpers, (ShapelessOreRecipe) baseRecipe);
} else {
return null;
}