View Single Post
  #1  
Old 03-13-2007, 06:28 PM
UrbelT
Fire Beetle
 
Join Date: Jan 2002
Posts: 22
Default Fix: Client not taking pet's spells in PVP

Ex: Mage earth pet roots, but client won't take it because its not ready to receive anything from a pet...

Fix code by doing the following:

Entity.cpp (around line 1010)
Change From:
c->SendAppearancePacket(AT_PVP, c->GetPVP(), false, false, to);

Change To:
c->SendAppearancePacket(AT_PVP, c->GetPVP(), true, false, to);

Fixes mage pets not being able to root opponents in PVP and possible DOTs not showing up.
Reply With Quote