diff --git a/changelog.txt b/changelog.txt index eb6440f90..c67c65ce6 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 with names beginning "Skill:" (e.g. RNG Warder's Wrath, etc) can be memorized now, by hand-in-to-guildmaster or right-click-from-inventory. + == 03/02/2013 == af4t: Stop NPCs aggroing each other with buffs/beneficial spells. @@ -32,7 +35,6 @@ af4t: Add Touch of the Wicked AA redux to SK Improved Harm Touch and Leech Touch == 02/22/2013 == demonstar55: Mobs will now be removed from XTargets when they get back to their way point, should be last instance of XTarget mobs not clearing when they are not aggroed anymore -af4t: Melee tomes with names beginning "Skill:" (e.g. RNG Warder's Wrath, etc) can be memorized now. == 02/19/2013 == Derision: World should no longer crash if the start_zone query fails at character creation. 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);