Paper/nms-patches/PacketDataSerializer.patch

51 Zeilen
1.7 KiB
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/PacketDataSerializer.java
+++ b/net/minecraft/server/PacketDataSerializer.java
2017-05-14 04:00:00 +02:00
@@ -23,6 +23,8 @@
import java.util.UUID;
2016-05-10 13:47:39 +02:00
import javax.annotation.Nullable;
+import org.bukkit.craftbukkit.inventory.CraftItemStack; // CraftBukkit
+
public class PacketDataSerializer extends ByteBuf {
private final ByteBuf a;
2017-05-14 04:00:00 +02:00
@@ -130,7 +132,7 @@
2015-02-26 23:41:06 +01:00
}
public <T extends Enum<T>> T a(Class<T> oclass) {
2019-04-23 04:00:00 +02:00
- return ((Enum[]) oclass.getEnumConstants())[this.i()];
+ return ((T[]) oclass.getEnumConstants())[this.i()]; // 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) {
2017-05-14 04:00:00 +02:00
@@ -207,7 +209,7 @@
} else {
try {
NBTCompressedStreamTools.a(nbttagcompound, (DataOutput) (new ByteBufOutputStream(this)));
- } catch (IOException ioexception) {
+ } catch (Exception ioexception) { // CraftBukkit - IOException -> Exception
throw new EncoderException(ioexception);
}
}
2017-05-14 04:00:00 +02:00
@@ -234,7 +236,7 @@
}
2016-11-17 02:41:03 +01:00
public PacketDataSerializer a(ItemStack itemstack) {
- if (itemstack.isEmpty()) {
+ if (itemstack.isEmpty() || itemstack.getItem() == null) { // CraftBukkit - NPE fix itemstack.getItem()
2018-10-22 21:00:00 +02:00
this.writeBoolean(false);
} else {
2018-10-22 21:00:00 +02:00
this.writeBoolean(true);
2017-05-14 04:00:00 +02:00
@@ -263,6 +265,11 @@
2018-10-22 21:00:00 +02:00
ItemStack itemstack = new ItemStack(Item.getById(i), b0);
2019-04-23 04:00:00 +02:00
itemstack.setTag(this.l());
+ // CraftBukkit start
+ if (itemstack.getTag() != null) {
+ CraftItemStack.setItemMeta(itemstack, CraftItemStack.getItemMeta(itemstack));
+ }
+ // CraftBukkit end
2016-11-17 02:41:03 +01:00
return itemstack;
}
2016-11-17 02:41:03 +01:00
}