Update to Minecraft 1.13-pre7

This commit is contained in:
md_5
2018-07-15 10:00:00 +10:00
parent 57ab4cfc6f
commit 421c1728c8
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