From 0919be0f1cd048b6f8968090f66a835072ade1e5 Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 18 Sep 2019 21:04:32 -0400 Subject: [PATCH] made GetSurroundingBlocks require the tool being used If a diggable block is next to a block being mined with hammer, or if a mineable block is next to a block being dug with an excavator, durability would decrease by two instead of one due to the original check adding both diggable and mineable blocks to the list --- plugin/plugin.yml | 2 +- .../src/lightling/gibsoniacraft/util/BlockListener.java | 2 +- plugin/src/lightling/gibsoniacraft/util/ToolUtil.java | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/plugin/plugin.yml b/plugin/plugin.yml index fff7115..77a7aa6 100644 --- a/plugin/plugin.yml +++ b/plugin/plugin.yml @@ -1,6 +1,6 @@ main: lightling.gibsoniacraft.GibsoniaCraft name: GibsoniaCraft -version: 1.1.4 +version: 2.0.0 author: Lightling 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/util/BlockListener.java b/plugin/src/lightling/gibsoniacraft/util/BlockListener.java index 09143cb..036bc02 100644 --- a/plugin/src/lightling/gibsoniacraft/util/BlockListener.java +++ b/plugin/src/lightling/gibsoniacraft/util/BlockListener.java @@ -64,7 +64,7 @@ public class BlockListener implements Listener String pName = player.getName(); PlayerInteractListener pListener = gcPlugin.GetPlayerInteractListener(); BlockFace blockFace = pListener.GetFaceByName(pName); - ArrayList blocks = ToolUtil.GetSurroundingBlocks(blockFace, block); + ArrayList blocks = ToolUtil.GetSurroundingBlocks(blockFace, block, item); // Grab durability information ItemMeta meta = item.getItemMeta(); diff --git a/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java b/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java index 65668c4..85150a3 100644 --- a/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java +++ b/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java @@ -129,9 +129,10 @@ public class ToolUtil * Grabs the surrounding blocks in the world from the one that was mined/dug, and adds them to a list * @param blockFace The face that was targeted (changes the direction of the 3x3 grid) * @param target The block that was targeted + * @param tool The tool that was used * @return A list containing the surrounding blocks */ - public static ArrayList GetSurroundingBlocks(BlockFace blockFace, Block target) + public static ArrayList GetSurroundingBlocks(BlockFace blockFace, Block target, ItemStack tool) { // Create the list to work with ArrayList blocks = new ArrayList(); @@ -154,7 +155,7 @@ public class ToolUtil for (int worldZ = -1; worldZ <= 1; worldZ++) { Block b = world.getBlockAt(x + worldX, y, z + worldZ); - if (BlockRef.ValidExcavatorBlocks.contains(b.getType()) || BlockRef.ValidHammerBlocks.contains(b.getType())) + if (IsHammerable(tool, b.getType()) || IsExcavatable(tool, b.getType())) { blocks.add(b); } @@ -169,7 +170,7 @@ public class ToolUtil for (int worldZ = -1; worldZ <= 1; worldZ++) { Block b = world.getBlockAt(x, y + worldY, z + worldZ); - if (BlockRef.ValidExcavatorBlocks.contains(b.getType()) || BlockRef.ValidHammerBlocks.contains(b.getType())) + if (IsHammerable(tool, b.getType()) || IsExcavatable(tool, b.getType())) { blocks.add(b); } @@ -184,7 +185,7 @@ public class ToolUtil for (int worldY = -1; worldY <= 1; worldY++) { Block b = world.getBlockAt(x + worldX, y + worldY, z); - if (BlockRef.ValidExcavatorBlocks.contains(b.getType()) || BlockRef.ValidHammerBlocks.contains(b.getType())) + if (IsHammerable(tool, b.getType()) || IsExcavatable(tool, b.getType())) { blocks.add(b); }