* @param from The buffer to read from
* @return The read tag
*/
public static NBTTagCompound readTag(ByteBuf from)
{
PacketBuffer pb = new PacketBuffer(from);
try
{
return pb.readNBTTagCompoundFromBuffer();
} catch (IOException e)
{
// Unpossible?
throw Throwables.propagate(e);
}