1
0
Fork 0

fixed issues with excavator and plugin.yml

This commit is contained in:
lightling 2019-09-12 20:09:01 -04:00
parent ea99151cd4
commit 1d855f1aea
2 changed files with 8 additions and 7 deletions

View file

@ -1,5 +1,6 @@
main: lightling.gibsoniacraft.gibsoniacraft main: lightling.gibsoniacraft.GibsoniaCraft
name: GibsoniaCraft name: GibsoniaCraft
version: 1.0 version: 1.0
author: Lightling 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

View file

@ -127,11 +127,11 @@ public class Excavator
diamondExcRecipe = new ShapedRecipe(diamondExcKey, diamondExcavator); diamondExcRecipe = new ShapedRecipe(diamondExcKey, diamondExcavator);
// Define recipe shapes // Define recipe shapes
woodExcRecipe.shape(new String[] { " x ", " xix ", " x "}); woodExcRecipe.shape(new String[] { " x ", "xix", " x "});
stoneExcRecipe.shape(new String[] { " x ", " xix ", " x "}); stoneExcRecipe.shape(new String[] { " x ", "xix", " x "});
ironExcRecipe.shape(new String[] { " x ", " xix ", " x "}); ironExcRecipe.shape(new String[] { " x ", "xix", " x "});
goldExcRecipe.shape(new String[] { " x ", " xix ", " x "}); goldExcRecipe.shape(new String[] { " x ", "xix", " x "});
diamondExcRecipe.shape(new String[] { " x ", " xix ", " x "}); diamondExcRecipe.shape(new String[] { " x ", "xix", " x "});
// Define recipe choice ingredients for wood excavator // Define recipe choice ingredients for wood excavator
List<Material> woodChoices = new ArrayList<Material>() List<Material> woodChoices = new ArrayList<Material>()