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);