3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 12:30:06 +01:00

SPIGOT-4953: Crafting table inventory returns player location, not block location

Dieser Commit ist enthalten in:
md_5 2019-05-19 19:17:56 +10:00
Ursprung 585b2ebdd5
Commit d06991d960
2 geänderte Dateien mit 5 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,6 @@
--- a/net/minecraft/server/ContainerWorkbench.java
+++ b/net/minecraft/server/ContainerWorkbench.java
@@ -1,6 +1,10 @@
@@ -1,13 +1,21 @@
package net.minecraft.server;
import java.util.Optional;
@ -11,9 +11,10 @@
public class ContainerWorkbench extends ContainerRecipeBook<InventoryCrafting> {
@@ -8,6 +12,10 @@
private final InventoryCrafting craftInventory;
private final InventoryCraftResult resultInventory;
private final ContainerAccess e;
- private final ContainerAccess e;
+ public final ContainerAccess e;
private final EntityHuman f;
+ // CraftBukkit start
+ private CraftInventoryView bukkitEntity = null;

Datei anzeigen

@ -62,7 +62,7 @@
+
+ @Override
+ public Location getLocation() {
+ return owner.getBukkitEntity().getLocation();
+ return container instanceof ContainerWorkbench ? ((ContainerWorkbench) container).e.getLocation() : owner.getBukkitEntity().getLocation();
+ }
+
+ @Override