{
L2ItemInstance controlItem = pet.getOwner().getInventory().getItemByObjectId(pet.getControlItemId());
if (controlItem != null)
{
controlItem.setCustomType2(1);
controlItem.updateDatabase();
InventoryUpdate iu = new InventoryUpdate();
iu.addModifiedItem(controlItem);
activeChar.sendPacket(iu);
}
}