From c81549a441e509d1991892af917df3270f7feed6 Mon Sep 17 00:00:00 2001 From: af4t Date: Thu, 7 Mar 2013 09:42:16 -0500 Subject: [PATCH 1/2] Melee tomes named "Skill: ...": had overlooked learn-by-right-click, updated. --- changelog.txt | 3 +++ zone/client_packet.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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); From eb1e88b38c486f2fc71a501f79e154bd595c8d5b Mon Sep 17 00:00:00 2001 From: af4t Date: Thu, 7 Mar 2013 23:33:21 -0500 Subject: [PATCH 2/2] Reword blurbs in changelog.txt. --- changelog.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 85277fd95..c67c65ce6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,7 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- == 03/07/2013 == -af4t: Melee tomes named "Skill: ...": had overlooked learn-by-right-click, updated. +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. @@ -35,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.