Jump to content

[fix] Maim Interrupt passive


darkstalker

Recommended Posts

* What bug does the patch fix? What features does the patch add?

Adds missing passive aura 44835 needed to proc interrupt part of spell Maim (22570 and ranks). proc event entry and dummy proc code is already there, this the only thing missing here.

* For which repository revision was the patch created?

10484

* Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread.

no afaik

* Who has been writing this patch? Please include either forum user names or email addresses.

darkstalker

DELETE FROM playercreateinfo_spell WHERE Spell = 44835;
INSERT INTO playercreateinfo_spell VALUES
(4, 11, 44835, 'Maim Interrupt'),
(6, 11, 44835, 'Maim Interrupt');

Link to comment
Share on other sites

  • 1 year later...

Reject this, as this aura is not applied to new night elf druids.

Some alternative solution is still required. (Probably learn the passive aura when the spell is learned or something)

Edit: Store for future reference, in case something alike is required

diff --git a/sql/mangos.sql b/sql/mangos.sql
index 139d6c9..b77121e 100644
--- a/sql/mangos.sql
+++ b/sql/mangos.sql
@@ -12190,6 +12190,7 @@ INSERT INTO `playercreateinfo_spell` VALUES
(4,11,22027,'Remove Insignia'),
(4,11,22810,'Opening - No Text'),
(4,11,27764,'Fetish'),
+(4,11,44835,'Maim Interrupt'),
(4,11,45927,'Summon Friend'),
(4,11,58984,'Shadowmelt'),
(4,11,61437,'Opening'),
@@ -12701,6 +12702,7 @@ INSERT INTO `playercreateinfo_spell` VALUES
(6,11,22027,'Remove Insignia'),
(6,11,22810,'Opening - No Text'),
(6,11,27764,'Fetish'),
+(6,11,44835,'Maim Interrupt'),
(6,11,45927,'Summon Friend'),
(6,11,61437,'Opening'),
(6,11,66530,'Improved Barkskin (Passive)'),
diff --git a/sql/updates/77799_01_mangos_playercreateinfo_spell.sql b/sql/updates/77799_01_mangos_playercreateinfo_spell.sql
new file mode 100644
index 0000000..5899906
--- /dev/null
+++ b/sql/updates/77799_01_mangos_playercreateinfo_spell.sql
@@ -0,0 +1,4 @@
+DELETE FROM playercreateinfo_spell WHERE Spell=44835;
+INSERT INTO playercreateinfo_spell (race,class,Spell,Note) VALUES
+(4,11,44835,'Maim Interrupt'),
+(6,11,44835,'Maim Interrupt');

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use