[Fix] Ferocious Inspiration

This lines talk for themselfs!

What fixes?

  • Party/Raid Passive Aura

  • Pet Aura

  • Increase dmg with 1/2/3%

DELETE FROM `spell_pet_auras` WHERE `spell` IN ('34455','34459','34460'); INSERT INTO `spell_pet_auras` (`spell`, `effectId`, `pet`, `aura`) VALUES ('34455','0','0','75593'), -- Ferocious Inspiration (Rank 1) ('34459','0','0','75446'), -- Ferocious Inspiration (Rank 2) ('34460','0','0','75447'); -- Ferocious Inspiration (Rank 3)[/sql]

With respect,

Axel

use sql instead of

[CODE] for queries.

[sql]DELETE FROM spell_pet_auras WHERE spell IN (34455,34459,34460);
INSERT INTO spell_pet_auras (spell,effectId,pet,aura) VALUES
(34455,0,0,75593), – Ferocious Inspiration (Rank 1)
(34459,0,0,75446), – Ferocious Inspiration (Rank 2)
(34460,0,0,75447); – Ferocious Inspiration (Rank 3)[/sql][/CODE]