Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: e9ce88b9 SPIGOT-6562: Add more specific sculk sensor event CraftBukkit Changes: d7ef1e91 SPIGOT-6558: Attempt to improve SkullMeta e7a63287 SPIGOT-6562: Add more specific sculk sensor event
18 lines
920 B
Diff
18 lines
920 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
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/ShulkerBoxMenu.java b/src/main/java/net/minecraft/world/inventory/ShulkerBoxMenu.java
|
|
index b6235e4fe95ba5f19d5897010bf74245336d372d..4739515ca5c8d88283f24214c74ebf4fbd203677 100644
|
|
--- a/src/main/java/net/minecraft/world/inventory/ShulkerBoxMenu.java
|
|
+++ b/src/main/java/net/minecraft/world/inventory/ShulkerBoxMenu.java
|
|
@@ -66,6 +66,7 @@ public class ShulkerBoxMenu extends AbstractContainerMenu {
|
|
|
|
@Override
|
|
public boolean stillValid(Player player) {
|
|
+ if (!this.checkReachable) return true; // Paper - Add reachable override for ContainerShulkerBox
|
|
return this.container.stillValid(player);
|
|
}
|
|
|