diff options
author | Anubisss <none@none> | 2010-05-14 14:32:43 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2010-05-14 14:32:43 +0200 |
commit | 2425edfdab85e6c24978c679b1803cd4cf796f80 (patch) | |
tree | 83517268c46f273cf730891e24365015c944e9e0 /src/game/Unit.cpp | |
parent | 98a5c09af038798f196d7283a4112bc69d27462f (diff) |
Fix Glyph of Shred.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index da0a9a4ae4c..1bb63a9212b 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6222,8 +6222,31 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger // Glyph of Shred case 54815: { - triggered_spell_id = 63974; - break; + // try to find spell Rip on the target + if (AuraEffect const *AurEff = target->GetAuraEffect(SPELL_AURA_PERIODIC_DAMAGE, SPELLFAMILY_DRUID, 0x00800000, 0x0, 0x0, GetGUID())) + { + // Rip's max duration, note: spells which modifies Rip's duration also counted like Glyph of Rip + uint32 CountMin = AurEff->GetBase()->GetMaxDuration(); + + // just Rip's max duration without other spells + uint32 CountMax = GetSpellMaxDuration(AurEff->GetSpellProto()); + + // add possible auras' and Glyph of Shred's max duration + CountMax += 3 * triggerAmount * 1000; // Glyph of Shred -> +6 seconds + CountMax += HasAura(54818) ? 4 * 1000 : 0; // Glyph of Rip -> +4 seconds + CountMax += HasAura(60141) ? 4 * 1000 : 0; // Rip Duration/Lacerate Damage -> +4 seconds + + // if min < max -> that means caster didn't cast 3 shred yet + // so set Rip's duration and max duration + if (CountMin < CountMax) + { + AurEff->GetBase()->SetDuration(AurEff->GetBase()->GetDuration() + triggerAmount * 1000); + AurEff->GetBase()->SetMaxDuration(CountMin + triggerAmount * 1000); + return true; + } + } + // if not found Rip + return false; } // Glyph of Rake case 54821: |