mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
27 lines
1.4 KiB
Diff
27 lines
1.4 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||
|
Date: Thu, 8 Jun 2023 14:45:18 -0700
|
||
|
Subject: [PATCH] Properly remove the experimental smithing inventory type
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftAbstractInventoryView.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftAbstractInventoryView.java
|
||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftAbstractInventoryView.java
|
||
|
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftAbstractInventoryView.java
|
||
|
@@ -0,0 +0,0 @@ public abstract class CraftAbstractInventoryView implements InventoryView {
|
||
|
type = InventoryType.SlotType.CRAFTING;
|
||
|
break;
|
||
|
case ANVIL:
|
||
|
- case SMITHING:
|
||
|
case CARTOGRAPHY:
|
||
|
case GRINDSTONE:
|
||
|
case MERCHANT:
|
||
|
@@ -0,0 +0,0 @@ public abstract class CraftAbstractInventoryView implements InventoryView {
|
||
|
}
|
||
|
break;
|
||
|
case LOOM:
|
||
|
+ case SMITHING: // Paper - properly remove experimental smithing inventory
|
||
|
case SMITHING_NEW:
|
||
|
if (slot == 3) {
|
||
|
type = InventoryType.SlotType.RESULT;
|