diff options
Diffstat (limited to 'patch-remap/og/net/minecraft/world/inventory/CrafterMenu.patch')
-rw-r--r-- | patch-remap/og/net/minecraft/world/inventory/CrafterMenu.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/patch-remap/og/net/minecraft/world/inventory/CrafterMenu.patch b/patch-remap/og/net/minecraft/world/inventory/CrafterMenu.patch new file mode 100644 index 0000000000..586aff71de --- /dev/null +++ b/patch-remap/og/net/minecraft/world/inventory/CrafterMenu.patch @@ -0,0 +1,38 @@ +--- a/net/minecraft/world/inventory/CrafterMenu.java ++++ b/net/minecraft/world/inventory/CrafterMenu.java +@@ -8,8 +8,27 @@ + import net.minecraft.world.level.World; + import net.minecraft.world.level.block.CrafterBlock; + ++// CraftBukkit start ++import org.bukkit.craftbukkit.inventory.CraftInventoryCrafter; ++import org.bukkit.craftbukkit.inventory.CraftInventoryView; ++// CraftBukkit end ++ + public class CrafterMenu extends Container implements ICrafting { + ++ // CraftBukkit start ++ private CraftInventoryView bukkitEntity = null; ++ ++ @Override ++ public CraftInventoryView getBukkitView() { ++ if (bukkitEntity != null) { ++ return bukkitEntity; ++ } ++ ++ CraftInventoryCrafter inventory = new CraftInventoryCrafter(this.container, this.resultContainer); ++ bukkitEntity = new CraftInventoryView(this.player.getBukkitEntity(), inventory, this); ++ return bukkitEntity; ++ } ++ // CraftBukkit end + protected static final int SLOT_COUNT = 9; + private static final int INV_SLOT_START = 9; + private static final int INV_SLOT_END = 36; +@@ -116,6 +135,7 @@ + + @Override + public boolean stillValid(EntityHuman entityhuman) { ++ if (!this.checkReachable) return true; // CraftBukkit + return this.container.stillValid(entityhuman); + } + |