Paper/nms-patches/PacketDataSerializer.patch

55 lines
1.9 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/PacketDataSerializer.java
+++ b/net/minecraft/server/PacketDataSerializer.java
2016-03-16 06:49:50 +01:00
@@ -20,9 +20,12 @@
import java.nio.charset.Charset;
import java.util.UUID;
+import org.bukkit.craftbukkit.inventory.CraftItemStack; // CraftBukkit
+
public class PacketDataSerializer extends ByteBuf {
private final ByteBuf a;
2016-03-16 06:49:50 +01:00
+ int version = 107; // CraftBukkkit
public PacketDataSerializer(ByteBuf bytebuf) {
this.a = bytebuf;
2016-03-30 21:50:59 +02:00
@@ -119,7 +122,7 @@
2015-02-26 23:41:06 +01:00
}
public <T extends Enum<T>> T a(Class<T> oclass) {
2016-02-29 22:32:46 +01:00
- return ((Enum[]) oclass.getEnumConstants())[this.g()];
+ return ((T[]) oclass.getEnumConstants())[this.g()]; // CraftBukkit - fix decompile error
2015-02-26 23:41:06 +01:00
}
2016-02-29 22:32:46 +01:00
public PacketDataSerializer a(Enum<?> oenum) {
2016-03-30 21:50:59 +02:00
@@ -196,7 +199,7 @@
} else {
try {
NBTCompressedStreamTools.a(nbttagcompound, (DataOutput) (new ByteBufOutputStream(this)));
- } catch (IOException ioexception) {
+ } catch (Exception ioexception) { // CraftBukkit - IOException -> Exception
throw new EncoderException(ioexception);
}
}
2016-03-30 21:50:59 +02:00
@@ -222,7 +225,7 @@
}
2016-02-29 22:32:46 +01:00
public PacketDataSerializer a(ItemStack itemstack) {
- if (itemstack == null) {
+ if (itemstack == null || itemstack.getItem() == null) { // CraftBukkit - NPE fix itemstack.getItem()
this.writeShort(-1);
} else {
this.writeShort(Item.getId(itemstack.getItem()));
2016-03-30 21:50:59 +02:00
@@ -250,6 +253,11 @@
itemstack = new ItemStack(Item.getById(short0), b0, short1);
2016-02-29 22:32:46 +01:00
itemstack.setTag(this.j());
+ // CraftBukkit start
+ if (itemstack.getTag() != null) {
+ CraftItemStack.setItemMeta(itemstack, CraftItemStack.getItemMeta(itemstack));
+ }
+ // CraftBukkit end
}
return itemstack;