Update to Minecraft 1.11

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2016-11-17 12:41:03 +11:00
parent 49bc1c57f9
commit 4e412ab4e3
279 changed files with 3722 additions and 2992 deletions

View File

@@ -1,20 +1,20 @@
--- a/net/minecraft/server/IInventory.java
+++ b/net/minecraft/server/IInventory.java
@@ -1,6 +1,7 @@
@@ -1,5 +1,7 @@
package net.minecraft.server;
import javax.annotation.Nullable;
+import org.bukkit.craftbukkit.entity.CraftHumanEntity; // CraftBukkit
+
public interface IInventory extends INamableTileEntity {
@@ -36,4 +37,22 @@
int g();
int getSize();
@@ -33,4 +35,22 @@
int h();
void l();
void clear();
+
+ // CraftBukkit start
+ ItemStack[] getContents();
+ java.util.List<ItemStack> getContents();
+
+ void onOpen(CraftHumanEntity who);
+