From 002a0e3e465a9abf85b2bf60ccf782834971dd8e Mon Sep 17 00:00:00 2001 From: Sefiraat Date: Tue, 14 Sep 2021 07:07:58 +0100 Subject: [PATCH] Update src/main/java/io/github/thebusybiscuit/slimefun4/implementation/listeners/crafting/SmithingTableListener.java Co-authored-by: Daniel Walsh --- .../listeners/crafting/SmithingTableListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/listeners/crafting/SmithingTableListener.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/listeners/crafting/SmithingTableListener.java index b422f96c9..7b09e659e 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/listeners/crafting/SmithingTableListener.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/listeners/crafting/SmithingTableListener.java @@ -30,7 +30,7 @@ public class SmithingTableListener implements SlimefunCraftingListener { if (e.getInventory().getType() == InventoryType.SMITHING && e.getRawSlot() == 2 && e.getWhoClicked() instanceof Player) { ItemStack materialItem = e.getInventory().getContents()[1]; - // Checks if the Item in the Material/Netherite slot is allowed to be used. + // Checks if the item in the Material/Netherite slot is allowed to be used. if (isUnallowed(materialItem)) { e.setResult(Result.DENY); Slimefun.getLocalization().sendMessage(e.getWhoClicked(), "smithing_table.not-working", true);