From 1d855f1aea9153a864c0c6998cf1cdd68b3b5073 Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 12 Sep 2019 20:09:01 -0400 Subject: [PATCH] fixed issues with excavator and plugin.yml --- plugin/plugin.yml | 5 +++-- .../lightling/gibsoniacraft/crafting/Excavator.java | 10 +++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/plugin/plugin.yml b/plugin/plugin.yml index 08f37e1..94ba73e 100644 --- a/plugin/plugin.yml +++ b/plugin/plugin.yml @@ -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 \ No newline at end of file +description: Adds some small additions/changes to a PaperMC server +api-version: 1.14 \ No newline at end of file diff --git a/plugin/src/lightling/gibsoniacraft/crafting/Excavator.java b/plugin/src/lightling/gibsoniacraft/crafting/Excavator.java index 510cc5b..81668b3 100644 --- a/plugin/src/lightling/gibsoniacraft/crafting/Excavator.java +++ b/plugin/src/lightling/gibsoniacraft/crafting/Excavator.java @@ -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 woodChoices = new ArrayList()