You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
445 B
12 lines
445 B
10 years ago
|
--- ../src-base/minecraft/net/minecraft/network/PacketBuffer.java
|
||
|
+++ ../src-work/minecraft/net/minecraft/network/PacketBuffer.java
|
||
|
@@ -98,7 +98,7 @@
|
||
|
|
||
|
public void writeItemStackToBuffer(ItemStack p_150788_1_) throws IOException
|
||
|
{
|
||
|
- if (p_150788_1_ == null)
|
||
|
+ if (p_150788_1_ == null || p_150788_1_.getItem() == null) // CraftBukkit - NPE fix itemstack.getItem()
|
||
|
{
|
||
|
this.writeShort(-1);
|
||
|
}
|