Code:
bool Client::IsLeadershipEXPOn()
{
if(!m_pp.leadAAActive)
return false;
Group *g = GetGroup();
if(g && g->IsLeader(this) && (g->GroupCount() > 2))
return true;
Raid *r = GetRaid();
if(r && r->IsLeader(this) && (r->RaidCount() > 17))
return true;
return false;
}
Lerxst is right.