From ea46ef7a6226800574be37f618fbabc472c6882e Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Sat, 1 Jul 2023 09:35:45 +1000 Subject: [PATCH] All smithing inventories are now the new smithing inventory By: md_5 --- .../java/org/bukkit/event/inventory/InventoryType.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/event/inventory/InventoryType.java b/paper-api/src/main/java/org/bukkit/event/inventory/InventoryType.java index 3eb3a2cb67..ec9f58ea22 100644 --- a/paper-api/src/main/java/org/bukkit/event/inventory/InventoryType.java +++ b/paper-api/src/main/java/org/bukkit/event/inventory/InventoryType.java @@ -1,6 +1,5 @@ package org.bukkit.event.inventory; -import org.bukkit.MinecraftExperimental; import org.bukkit.inventory.InventoryHolder; import org.jetbrains.annotations.NotNull; @@ -83,9 +82,9 @@ public enum InventoryType { */ ANVIL(3, "Repairing"), /** - * A smithing inventory, with 2 CRAFTING slots and 1 RESULT slot + * A smithing inventory, with 3 CRAFTING slots and 1 RESULT slot. */ - SMITHING(3, "Upgrade Gear"), + SMITHING(4, "Upgrade Gear"), /** * A beacon inventory, with 1 CRAFTING slot */ @@ -146,9 +145,9 @@ public enum InventoryType { /** * The new smithing inventory, with 3 CRAFTING slots and 1 RESULT slot. * - * @apiNote draft, experimental 1.20 API + * @deprecated use {@link #SMITHING} */ - @MinecraftExperimental + @Deprecated SMITHING_NEW(4, "Upgrade Gear"), ;