Pets and Swarm pets should be able to hit IMMUNE_MELEE_EXCEPT_BANE mobs
proof:
http://everquest.allakhazam.com/db/n...56360625423557
Code:
@@ -796,7 +797,8 @@
}
}
- if(against->SpecAttacks[IMMUNE_MELEE_EXCEPT_BANE]){
+ // Pets should be able to hit bane only mobs
+ if(against->SpecAttacks[IMMUNE_MELEE_EXCEPT_BANE] && !GetOwner()){
if(weapon_item){
if(weapon_item->BaneDmgBody == against->GetBodyType()){
banedmg += weapon_item->BaneDmgAmt;