9147456fc9
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 CraftBukkit Changes: ab8ace685 SPIGOT-7236: Bone meal doesn't increase use statistic 7dcb59b8e Avoid switch on material in previous commit Spigot Changes: 19641c75 SPIGOT-7235: World.Spigot#strikeLightningEffect doesn't do anything
19 Zeilen
920 B
Diff
19 Zeilen
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 9923bc95e2268ea4af3d4e8b75fbb83195012ea1..8d18f6debb694962f3ea8056a7563f71e8684afa 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);
|
|
}
|
|
|