fixed issues with excavator and plugin.yml
This commit is contained in:
parent
ea99151cd4
commit
1d855f1aea
2 changed files with 8 additions and 7 deletions
|
@ -127,11 +127,11 @@ public class Excavator
|
|||
diamondExcRecipe = new ShapedRecipe(diamondExcKey, diamondExcavator);
|
||||
|
||||
// Define recipe shapes
|
||||
woodExcRecipe.shape(new String[] { " x ", " xix ", " x "});
|
||||
stoneExcRecipe.shape(new String[] { " x ", " xix ", " x "});
|
||||
ironExcRecipe.shape(new String[] { " x ", " xix ", " x "});
|
||||
goldExcRecipe.shape(new String[] { " x ", " xix ", " x "});
|
||||
diamondExcRecipe.shape(new String[] { " x ", " xix ", " x "});
|
||||
woodExcRecipe.shape(new String[] { " x ", "xix", " x "});
|
||||
stoneExcRecipe.shape(new String[] { " x ", "xix", " x "});
|
||||
ironExcRecipe.shape(new String[] { " x ", "xix", " x "});
|
||||
goldExcRecipe.shape(new String[] { " x ", "xix", " x "});
|
||||
diamondExcRecipe.shape(new String[] { " x ", "xix", " x "});
|
||||
|
||||
// Define recipe choice ingredients for wood excavator
|
||||
List<Material> woodChoices = new ArrayList<Material>()
|
||||
|
|
Reference in a new issue