Add getLocation for InventoryEnderChest

This commit is contained in:
md_5 2016-12-11 16:41:40 +11:00
parent 0a81101bd2
commit c4baa9cdf9

View File

@ -1,8 +1,9 @@
--- a/net/minecraft/server/InventoryEnderChest.java
+++ b/net/minecraft/server/InventoryEnderChest.java
@@ -1,11 +1,21 @@
@@ -1,11 +1,27 @@
package net.minecraft.server;
+import org.bukkit.Location;
+import org.bukkit.inventory.InventoryHolder;
+
public class InventoryEnderChest extends InventorySubcontainer {
@ -14,6 +15,11 @@
+ public InventoryHolder getBukkitOwner() {
+ return owner.getBukkitEntity();
+ }
+
+ @Override
+ public Location getLocation() {
+ return new Location(this.a.getWorld().getWorld(), this.a.getPosition().getX(), this.a.getPosition().getY(), this.a.getPosition().getZ());
+ }
- public InventoryEnderChest() {
+ public InventoryEnderChest(EntityHuman owner) {