Provide access to ShapedOreRecipe width and height (#3439)

This commit is contained in:
mezz 2016-11-27 01:49:13 -08:00 committed by LexManos
parent 059605e352
commit daee86d14d
1 changed files with 10 additions and 0 deletions

View File

@ -283,4 +283,14 @@ public class ShapedOreRecipe implements IRecipe
{
return ForgeHooks.defaultRecipeGetRemainingItems(inv);
}
public int getWidth()
{
return width;
}
public int getHeight()
{
return height;
}
}