Author: Omega
Date: Wed Mar 03 22:02:45 CET 2010
Revision: 3742
Log:

ICC/Putricide: Removed SPELL_AURA_APPLIED_DOSE = SPELL_AURA_APPLIED to prevent unbound plague icon being set every second. SPELL_AURA_APPLIED_DOSE is now declared by itself and mutated plague is only function under it.
ICC/Blood Trash: As of this week blood sap is now trinketable, it wasn't all previous weeks but it worked this week. Tweaked trash mod to remove timer now if you do trinket it.

Updated
trunk/DBM-Icecrown/TheCrimsonHall/CrimsonHallTrash.lua
Updated
trunk/DBM-Icecrown/ThePlagueworks/Putricide.lua

trunk/DBM-Icecrown/TheCrimsonHall/CrimsonHallTrash.lua
Action: modified
Old revision: 3741
Old date: 2010-03-03 19:31:05 UTC

@@ -56,5 +56,7 @@
if args:IsSpellID(70451) then
timerBloodMirror:Cancel(args.destName)
self:SetIcon(args.destName, 0)
+ elseif args:IsSpellID(70432) then
+ timerBloodSap:Cancel(args.destName)
end
end
\ No newline at end of file


trunk/DBM-Icecrown/ThePlagueworks/Putricide.lua
Action: modified
Old revision: 3741
Old date: 2010-03-03 19:31:05 UTC

@@ -286,7 +286,12 @@
end
end

-mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED
+function mod:SPELL_AURA_APPLIED_DOSE(args)
+ if args:IsSpellID(72451, 72463, 72671, 72672) then -- Mutated Plague
+ warnMutatedPlague:Show(args.spellName, args.destName, args.amount or 1)
+ timerMutatedPlagueCD:Start()
+ end
+end

function mod:SPELL_AURA_REMOVED(args)
if args:IsSpellID(70447, 72836, 72837, 72838) then