aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch
diff options
context:
space:
mode:
authorKyle Wood <[email protected]>2021-06-24 01:21:17 -0500
committerKyle Wood <[email protected]>2021-06-24 01:21:17 -0500
commit6ab98f8e35c9c941759ff1d15e15f66293c1983a (patch)
tree4635cf11ddcc351d65044664d17924067f373fb2 /Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch
parent216bd81bef963ff595eff88b68e9737977c40f66 (diff)
downloadPaper-6ab98f8e35c9c941759ff1d15e15f66293c1983a.tar.gz
Paper-6ab98f8e35c9c941759ff1d15e15f66293c1983a.zip
More changes for new paperweight
Diffstat (limited to 'Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch')
-rw-r--r--Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch b/Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch
deleted file mode 100644
index 0a4779d24e..0000000000
--- a/Spigot-Server-Patches-Unmapped/0711-Fix-checkReach-check-for-Shulker-boxes.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Owen1212055 <[email protected]>
-Date: Sun, 4 Apr 2021 14:25:04 -0400
-Subject: [PATCH] Fix checkReach check for Shulker boxes
-
-
-diff --git a/src/main/java/net/minecraft/world/inventory/ContainerShulkerBox.java b/src/main/java/net/minecraft/world/inventory/ContainerShulkerBox.java
-index fdc47411aa3e0e27d3a20c18274fef0a0db9a5b1..6ef70e209a8e282f7c00d80678636c2b8aa49b7a 100644
---- a/src/main/java/net/minecraft/world/inventory/ContainerShulkerBox.java
-+++ b/src/main/java/net/minecraft/world/inventory/ContainerShulkerBox.java
-@@ -65,6 +65,7 @@ public class ContainerShulkerBox extends Container {
-
- @Override
- public boolean canUse(EntityHuman entityhuman) {
-+ if (!this.checkReachable) return true; // Paper - Add reachable override for ContainerShulkerBox
- return this.c.a(entityhuman);
- }
-