@Override
@SideOnly(Side.CLIENT)
public IMessage onMessage(MessageOpenBackpack message, MessageContext ctx) {
EntityPlayer entityPlayer = Minecraft.getMinecraft().thePlayer;
IInventory backpackInventory = new InventoryBasic(message.name, message.customName, message.size);
NBTTagCompound nbtTagCompound = new NBTTagCompound();
NBTUtil.setString(nbtTagCompound, Constants.NBT.UID, message.uuid);
NBTUtil.setByte(nbtTagCompound, Constants.NBT.TYPE, message.type);
NBTUtil.setInteger(nbtTagCompound, Constants.NBT.SLOTS_PER_ROW, message.slotsPerRow);