Dream of Cenarius changed in 5.4 #295


  • Defect
  • New
Open
  • JTF195 created this issue Oct 28, 2013

    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: 145151
    Feral: 145152
    Resto: 145153
    Guardian: 145162

  • JTF195 added the tags New Defect Oct 28, 2013
  • JTF195 posted a comment Oct 28, 2013

    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
    	}
    

    Edited Oct 28, 2013

To post a comment, please login or register a new account.