diff --git a/changelog.txt b/changelog.txt index 1a1c7397a..b6f5f2ad6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,8 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- == 10/19/2014 == Uleat: Updated command #peekinv to display item links properly in RoF clients +demonstar55: Group Mentoring in raids +demonstar55: Inspect Buffs (text only version) works in raid groups == 10/18/2014== demonstar55: Implement group mentor, sharing leadership exp (SoF+ only) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 0ec740507..6d9291685 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -5338,6 +5338,17 @@ void Client::Handle_OP_DoGroupLeadershipAbility(const EQApplicationPacket *app) if (!Target || !Target->IsClient()) return; + if (IsRaidGrouped()) { + Raid *raid = GetRaid(); + if (!raid) + return; + uint32 group_id = raid->GetGroup(this); + if (group_id > 11 || raid->GroupCount(group_id) < 3) + return; + Target->CastToClient()->InspectBuffs(this, raid->GetLeadershipAA(groupAAInspectBuffs, group_id)); + return; + } + Group *g = GetGroup(); if (!g || (g->GroupCount() < 3))