Update to Minecraft 1.13-pre7

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2018-07-15 10:00:00 +10:00
commit 7e0a66fdd5
608 changed files with 17788 additions and 9378 deletions

View file

@ -35,9 +35,9 @@
+ if (itemstack.isEmpty() || itemstack.getItem() == null) { // CraftBukkit - NPE fix itemstack.getItem()
this.writeShort(-1);
} else {
this.writeShort(Item.getId(itemstack.getItem()));
Item item = itemstack.getItem();
@@ -263,6 +265,11 @@
ItemStack itemstack = new ItemStack(Item.getById(short0), b0, short1);
ItemStack itemstack = new ItemStack(Item.getById(short0), b0);
itemstack.setTag(this.j());
+ // CraftBukkit start