From d3268afef541b0ebc028f16166d2c9d4fb00bcff Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 18 Sep 2019 21:12:13 -0400 Subject: [PATCH] removed blockchecking made redundant by update to GetSurroundingBlocks, removed unused variables --- .../gibsoniacraft/util/BlockListener.java | 47 +++++-------------- 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/plugin/src/lightling/gibsoniacraft/util/BlockListener.java b/plugin/src/lightling/gibsoniacraft/util/BlockListener.java index 036bc02..ea09dca 100644 --- a/plugin/src/lightling/gibsoniacraft/util/BlockListener.java +++ b/plugin/src/lightling/gibsoniacraft/util/BlockListener.java @@ -81,28 +81,16 @@ public class BlockListener implements Listener // Iterates through to break surrounding blocks for (Block b : blocks) - { - // Determine the block type and position - Material blockMat = b.getType(); - Location blockLoc = b.getLocation(); - - // Determine whether an appropriate tool is being used - boolean isExc = ToolUtil.IsExcavatable(item, blockMat); - boolean isHam = ToolUtil.IsHammerable(item, blockMat); - - // If using the correct tools, break surrounding blocks - if (isExc || isHam) - { - // Handle snow - if (blockMat == Material.SNOW && isExc) - { - @SuppressWarnings("deprecation") - final ItemStack snow = new ItemStack(Material.SNOWBALL, 1 + b.getData()); - b.getWorld().dropItemNaturally(blockLoc, snow); - } + { + // Handle snow + if (b.getType() == Material.SNOW) + { + @SuppressWarnings("deprecation") + final ItemStack snow = new ItemStack(Material.SNOWBALL, 1 + b.getData()); + b.getWorld().dropItemNaturally(b.getLocation(), snow); + } - b.breakNaturally(); - } + b.breakNaturally(); } @@ -147,7 +135,6 @@ public class BlockListener implements Listener // Grab current tool information Player player = bbEvent.getPlayer(); ItemStack item = player.getInventory().getItemInMainHand(); - Material itemType = item.getType(); // Get block information via the player listener Block block = bbEvent.getBlock(); @@ -179,18 +166,8 @@ public class BlockListener implements Listener } for (Block b : ToolUtil.GetUpwardLogs(block)) - { - // Determine the block type and position - Material blockMat = b.getType(); - Location blockLoc = b.getLocation(); - - // Determine whether an appropriate tool is being used - boolean isAxe = ToolUtil.IsLumberAxeable(item, blockMat); - - if (isAxe) - { - b.breakNaturally(); - } + { + b.breakNaturally(); } // Used for determining durability loss @@ -202,7 +179,7 @@ public class BlockListener implements Listener addToDamage = 2; // Diamond tools take less damage - if (itemType == Material.DIAMOND_AXE) + if (item.getType() == Material.DIAMOND_AXE) { addToDamage = 1; }