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
|
@ -1,5 +1,6 @@
|
|||
main: lightling.gibsoniacraft.gibsoniacraft
|
||||
main: lightling.gibsoniacraft.GibsoniaCraft
|
||||
name: GibsoniaCraft
|
||||
version: 1.0
|
||||
author: Lightling
|
||||
description: Adds some small additions/changes to a PaperMC server
|
||||
description: Adds some small additions/changes to a PaperMC server
|
||||
api-version: 1.14
|
|
@ -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