Jump to content

Recommended Posts

Posted

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

Implements 4 piece bonus of Tier 9 Elemental Shaman sets

"Your Lava Burst spell causes your target to burn for an additional 10% of your spell's damage over 6 sec."

Links:

http://www.wowhead.com/?spell=67228

http://www.wowhead.com/?spell=71824

For which repository revision was the patch created?

9363

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

http://getmangos.eu/community/showthread.php?12562-[bug]-Shaman-T9-Elemental-4P-Bonus&p=104079

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

unloading (aka myself)

diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index 11dcfaf..5d8b2e8 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -6617,6 +6617,13 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
                    triggered_spell_id = 64930;            // Electrified
                    break;
                }
+                // Shaman T9 Elemental 4P Bonus
+                case 67228:
+                {
+                    basepoints0 = int32( triggerAmount * damage / 100 );
+                    triggered_spell_id = 71824;
+                    break;
+                }
            }
            // Storm, Earth and Fire
            if (dummySpell->SpellIconID == 3063)

INSERT INTO spell_bonus_data VALUES
(71824,0,0,0,'Item - Shaman T9 Elemental 4P Bonus');

INSERT INTO `spell_proc_event` VALUES
(67228, 0x00000004, 11, 0x00000000, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);

  • 40 years later...
Guest
This topic is now closed to further replies.
×
×
  • 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