1
0
Fork 0

fixed crafting recipe for axe, ensured initial target block must be log in order for axe to function

This commit is contained in:
lightling 2019-09-14 14:26:18 -04:00
parent c3b90f4df1
commit 313105bdd9
3 changed files with 49 additions and 43 deletions

View file

@ -4,6 +4,7 @@ import org.bukkit.plugin.java.JavaPlugin;
import lightling.gibsoniacraft.crafting.Excavator;
import lightling.gibsoniacraft.crafting.Hammer;
import lightling.gibsoniacraft.crafting.LumberAxe;
import lightling.gibsoniacraft.util.BlockListener;
import lightling.gibsoniacraft.util.PlayerInteractListener;
@ -11,6 +12,7 @@ public final class GibsoniaCraft extends JavaPlugin {
private Excavator excavatorClass;
private Hammer hammerClass;
private LumberAxe lumberAxeClass;
private PlayerInteractListener pListener;
private BlockListener bListener;
@ -18,6 +20,7 @@ public final class GibsoniaCraft extends JavaPlugin {
public void onEnable() {
excavatorClass = new Excavator(this);
hammerClass = new Hammer(this);
lumberAxeClass = new LumberAxe(this);
pListener = new PlayerInteractListener(this);
bListener = new BlockListener(this);
}

View file

@ -18,7 +18,7 @@ import org.bukkit.plugin.Plugin; // Involved in setting up namespaced-key
import org.bukkit.Server; // For registering recipes on the server
/**
* An LumberAxe is a shovel-based item that digs in a 3x3 radius as opposed to a singular block
* An LumberAxe is a AXE-based item that digs in a 3x3 radius as opposed to a singular block
* @author Lightling
*/
public class LumberAxe
@ -62,11 +62,11 @@ public class LumberAxe
private void SetupItems(final JavaPlugin plugin)
{
// Define the LumberAxe items
woodLumberAxe = new ItemStack(Material.WOODEN_SHOVEL);
stoneLumberAxe = new ItemStack(Material.STONE_SHOVEL);
ironLumberAxe = new ItemStack(Material.IRON_SHOVEL);
goldLumberAxe = new ItemStack(Material.GOLDEN_SHOVEL);
diamondLumberAxe = new ItemStack(Material.DIAMOND_SHOVEL);
woodLumberAxe = new ItemStack(Material.WOODEN_AXE);
stoneLumberAxe = new ItemStack(Material.STONE_AXE);
ironLumberAxe = new ItemStack(Material.IRON_AXE);
goldLumberAxe = new ItemStack(Material.GOLDEN_AXE);
diamondLumberAxe = new ItemStack(Material.DIAMOND_AXE);
// Define the LumberAxe namespaced keys
woodLumAxeKey = new NamespacedKey((Plugin)plugin, "w_LumberAxe");
@ -147,15 +147,15 @@ public class LumberAxe
// Define recipes for the LumberAxes
woodLumAxeRecipe.setIngredient('x', woodChoice);
woodLumAxeRecipe.setIngredient('i', Material.WOODEN_SHOVEL);
woodLumAxeRecipe.setIngredient('i', Material.WOODEN_AXE);
stoneLumAxeRecipe.setIngredient('x', Material.COBBLESTONE);
stoneLumAxeRecipe.setIngredient('i', Material.STONE_SHOVEL);
stoneLumAxeRecipe.setIngredient('i', Material.STONE_AXE);
ironLumAxeRecipe.setIngredient('x', Material.IRON_INGOT);
ironLumAxeRecipe.setIngredient('i', Material.IRON_SHOVEL);
ironLumAxeRecipe.setIngredient('i', Material.IRON_AXE);
goldLumAxeRecipe.setIngredient('x', Material.GOLD_INGOT);
goldLumAxeRecipe.setIngredient('i', Material.GOLDEN_SHOVEL);
goldLumAxeRecipe.setIngredient('i', Material.GOLDEN_AXE);
diamondLumAxeRecipe.setIngredient('x', Material.DIAMOND);
diamondLumAxeRecipe.setIngredient('i', Material.DIAMOND_SHOVEL);
diamondLumAxeRecipe.setIngredient('i', Material.DIAMOND_AXE);
// Register recipes on the server
Server server = plugin.getServer();

View file

@ -208,7 +208,9 @@ public class ToolUtil
// Create control for loop
boolean moreBlocks = true;
// Grab all logs in a tree
// Grab all logs in a tree, ensuring target block is a log first
if (BlockRef.ValidLumberAxeBlocks.contains(target.getType()))
{
do
{
// Variable that ends loop if remains 0
@ -248,6 +250,7 @@ public class ToolUtil
}
}
while (moreBlocks);
}
return blocks;
}