diff --git a/changelog.txt b/changelog.txt index eb6440f90..85277fd95 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 03/07/2013 == +af4t: Melee tomes named "Skill: ...": had overlooked learn-by-right-click, updated. + == 03/02/2013 == af4t: Stop NPCs aggroing each other with buffs/beneficial spells. diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 6685bfa99..7c43684d0 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -2082,7 +2082,7 @@ void Client::Handle_OP_ItemVerifyRequest(const EQApplicationPacket *app) } else if (inst->IsType(ItemClassCommon)) { - if(item->ItemType == ItemTypeSpell && strstr((const char*)item->Name, "Tome of ")) + if(item->ItemType == ItemTypeSpell && (strstr((const char*)item->Name, "Tome of ") || strstr((const char*)item->Name, "Skill: "))) { DeleteItemInInventory(slot_id, 1, true); TrainDiscipline(item->ID);