[Other] 4.3.4 Hunter Pet Fix (Swoop and Last Stand Talent)

Damieninabox

Gold Supporter
Senior User
194
2019
63
Hello emucoach!

Just a real quick SQL fix for 4.3.4, where "Swoop" wouldn't immobilize the target and where "Last Stand" wouldnt increase the pets current health.
Spell 53478 is Last Stand from the Pet Talent Tree, I messed around with it until I just deleted the database insert and all of it sudden it finally worked as it should, so do not worry about deleting this row.

Pet Talent "Swoop" -

DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=52825;
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `req_aura`, `comment`) VALUES (52825, 53148, 1, 0, 'Hunter Pet - Swoop Stun');

Pet Talent "Last Stand"-

DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=53478;
 
Top