geforkt von Mirrors/Paper
SPIGOT-4953: Crafting table inventory returns player location, not block location
Dieser Commit ist enthalten in:
Ursprung
585b2ebdd5
Commit
d06991d960
@ -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;
|
||||
|
@ -62,7 +62,7 @@
|
||||
+
|
||||
+ @Override
|
||||
+ public Location getLocation() {
|
||||
+ return owner.getBukkitEntity().getLocation();
|
||||
+ return container instanceof ContainerWorkbench ? ((ContainerWorkbench) container).e.getLocation() : owner.getBukkitEntity().getLocation();
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren