This commit is contained in:
Modmuss50 2015-11-03 19:42:49 +00:00
parent df3142d7ec
commit 9d9a1dba60
2 changed files with 11 additions and 1 deletions

View file

@ -29,7 +29,7 @@ public class ShapedRollingMachineHandler extends ShapedRecipeHandler {
@Override @Override
public String getRecipeName() { public String getRecipeName() {
return "rollingcrafting"; return "Shaped Rolling Machine";
} }
@Override @Override
@ -103,4 +103,9 @@ public class ShapedRollingMachineHandler extends ShapedRecipeHandler {
} }
} }
} }
@Override
public String getGuiTexture() {
return "techreborn:textures/gui/rolling_machine.png";
}
} }

View file

@ -108,4 +108,9 @@ public class ShapelessRollingMachineHandler extends ShapelessRecipeHandler {
return new CachedShapelessRecipe(recipe.recipeItems, return new CachedShapelessRecipe(recipe.recipeItems,
recipe.getRecipeOutput()); recipe.getRecipeOutput());
} }
@Override
public String getGuiTexture() {
return "techreborn:textures/gui/rolling_machine.png";
}
} }