Handle NULL results from the deserialization methods.

This commit is contained in:
Kristian S. Stangeland 2013-07-17 21:31:44 +02:00
parent 9448e06ad8
commit a31dc6fdcb

View File

@ -59,7 +59,10 @@ public class StreamSerializer {
Object nmsItem = READ_ITEM_METHOD.invoke(null, input);
// Convert back to a Bukkit item stack
if (nmsItem != null)
return MinecraftReflection.getBukkitItemStack(nmsItem);
else
return null;
} catch (Exception e) {
throw new IOException("Cannot read item stack.", e);
@ -84,8 +87,14 @@ public class StreamSerializer {
build());
}
try {
Object nmsCompound = READ_NBT_METHOD.invoke(null, input);
// Convert back to an NBT Compound
return NbtFactory.fromNMSCompound(READ_NBT_METHOD.invoke(null, input));
if (nmsCompound != null)
return NbtFactory.fromNMSCompound(nmsCompound);
else
return null;
} catch (Exception e) {
throw new IOException("Cannot read item stack.", e);
}