This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
What is your Race, Class and Level?Level 90 Night Elf Feral Druid
What is the expected output? What do you see instead?Damage numbers should update with Dream of Cenarius, but they don't currently
What version of DrDamage are you using?2.0.2-beta
Please provide any additional information below.The spell ids for DoC were changed to the following in 5.4:
Balance: 145151Feral: 145152Resto: 145153Guardian: 145162
Updated Druid.lua starting at line 449
should fix DoC for feral and resto
self.PlayerAura[GetSpellInfo(108373)] = { ModType = function( calculation, _, _, _, index ) local id = select(11,UnitAura("player","Dream of Cenarius",nil,"PLAYER")) if id == 145151 then if calculation.spellName == "Moonfire" or calculation.spellName == "Sunfire" then calculation.dmgM = calculation.dmgM * 1.25 end --this is no longer correct. needs to be changed to affect eclipse state elseif id == 145152 then if calculation.melee then calculation.dmgM = calculation.dmgM * 1.30 end elseif id == 145153 then if calculation.spellName == "Wrath" then calculation.dmgM = calculation.dmgM * 1.2 end end end }
To post a comment, please login or register a new account.