mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 11:24:11 +01:00
25f3b50f6b
By: md_5 <git@md-5.net>
83 lines
3.3 KiB
Diff
83 lines
3.3 KiB
Diff
--- a/net/minecraft/network/PacketDataSerializer.java
|
|
+++ b/net/minecraft/network/PacketDataSerializer.java
|
|
@@ -68,6 +68,8 @@
|
|
import net.minecraft.world.phys.MovingObjectPositionBlock;
|
|
import net.minecraft.world.phys.Vec3D;
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack; // CraftBukkit
|
|
+
|
|
public class PacketDataSerializer extends ByteBuf {
|
|
|
|
private static final int MAX_VARINT_SIZE = 5;
|
|
@@ -158,7 +160,7 @@
|
|
|
|
public <T, C extends Collection<T>> C readCollection(IntFunction<C> intfunction, PacketDataSerializer.a<T> packetdataserializer_a) {
|
|
int i = this.readVarInt();
|
|
- C c0 = (Collection) intfunction.apply(i);
|
|
+ C c0 = intfunction.apply(i); // CraftBukkit - decompile error
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
c0.add(packetdataserializer_a.apply(this));
|
|
@@ -169,7 +171,7 @@
|
|
|
|
public <T> void writeCollection(Collection<T> collection, PacketDataSerializer.b<T> packetdataserializer_b) {
|
|
this.writeVarInt(collection.size());
|
|
- Iterator iterator = collection.iterator();
|
|
+ Iterator<T> iterator = collection.iterator(); // CraftBukkit - decompile error
|
|
|
|
while (iterator.hasNext()) {
|
|
T t0 = iterator.next();
|
|
@@ -196,12 +198,12 @@
|
|
|
|
public void writeIntIdList(IntList intlist) {
|
|
this.writeVarInt(intlist.size());
|
|
- intlist.forEach(this::writeVarInt);
|
|
+ intlist.forEach((java.util.function.IntConsumer) this::writeVarInt); // CraftBukkit - decompile error
|
|
}
|
|
|
|
public <K, V, M extends Map<K, V>> M readMap(IntFunction<M> intfunction, PacketDataSerializer.a<K> packetdataserializer_a, PacketDataSerializer.a<V> packetdataserializer_a1) {
|
|
int i = this.readVarInt();
|
|
- M m0 = (Map) intfunction.apply(i);
|
|
+ M m0 = intfunction.apply(i); // CraftBukkit - decompile error
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
K k0 = packetdataserializer_a.apply(this);
|
|
@@ -437,7 +439,7 @@
|
|
}
|
|
|
|
public <T extends Enum<T>> T readEnum(Class<T> oclass) {
|
|
- return ((Enum[]) oclass.getEnumConstants())[this.readVarInt()];
|
|
+ return ((T[]) oclass.getEnumConstants())[this.readVarInt()]; // CraftBukkit - fix decompile error
|
|
}
|
|
|
|
public PacketDataSerializer writeEnum(Enum<?> oenum) {
|
|
@@ -514,7 +516,7 @@
|
|
} else {
|
|
try {
|
|
NBTCompressedStreamTools.write(nbttagcompound, (DataOutput) (new ByteBufOutputStream(this)));
|
|
- } catch (IOException ioexception) {
|
|
+ } catch (Exception ioexception) { // CraftBukkit - IOException -> Exception
|
|
throw new EncoderException(ioexception);
|
|
}
|
|
}
|
|
@@ -551,7 +553,7 @@
|
|
}
|
|
|
|
public PacketDataSerializer writeItem(ItemStack itemstack) {
|
|
- if (itemstack.isEmpty()) {
|
|
+ if (itemstack.isEmpty() || itemstack.getItem() == null) { // CraftBukkit - NPE fix itemstack.getItem()
|
|
this.writeBoolean(false);
|
|
} else {
|
|
this.writeBoolean(true);
|
|
@@ -580,6 +582,11 @@
|
|
ItemStack itemstack = new ItemStack(item, b0);
|
|
|
|
itemstack.setTag(this.readNbt());
|
|
+ // CraftBukkit start
|
|
+ if (itemstack.getTag() != null) {
|
|
+ CraftItemStack.setItemMeta(itemstack, CraftItemStack.getItemMeta(itemstack));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
return itemstack;
|
|
}
|
|
}
|