// Remove the item from inventory.
activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
// Broadcast the changes to the char and all those nearby.
UserInfo ui = new UserInfo(activeChar);
activeChar.broadcastPacket(ui);
ui = null;
activeChar = null;
}