X-Perl UnitFrames

158 - 3 missing druid spells, with solutions

There are 3 druid healing spells added with 3.0 that xperl doesn't account for. The problems are easily fixed and just need to be implemented:

http://www.wowwiki.com/Revive
^ Druid resurrect spell, Add to (charname) Resurrecting and Resurrected raid frame notifications (XPerl_Raid.lua)

local resSpells  = {
...
[GetSpellInfo(50769)] = true, -- ["Revive"] = true
}

http://www.wowwiki.com/Nourish
^ New druid direct heal. Add to Global - Heals for proper highlighting. (localization.lua)

healSpells = {
...
[GetSpellInfo(50464)] = 1.5, -- Nourish
},

http://www.wowwiki.com/Wild_Growth
^ New druid Heal over Time spell. Add to Global - HOT Counter. (localization.lua)

XPERL_HIGHLIGHT_SPELLS = {
hotSpells = {
[GetSpellInfo(26982)] = 12, -- Rejuvenation
[GetSpellInfo(26980)] = 21, -- Regrowth
[GetSpellInfo(25222)] = 15, -- Renew
[GetSpellInfo(53251)] = 7, -- Wild Growth
[GetSpellInfo(33763)] = 8, -- Lifebloom
[GetSpellInfo(28880)] = 15 -- Gift of the Naaru (Racial)
},

NOTE: Swiftmend was incorrectly listed where Wild Growth is - swiftmend is NOT a HoT, so I took the liberty of removing it.

Credit goes to other posts and tickets for two of these solutions. I just took the liberty of consolidating and simplifying with the hope that the author will take a minute and get these implemented.

User When Change
Zeksie Aug 07, 2009 at 17:30 UTC Changed status from Started to Fixed
Zeksie Aug 07, 2009 at 15:58 UTC Changed status from New to Started
venoman Jun 04, 2009 at 11:40 UTC Changed description:
  	},</blockquote></pre>

  http://www.wowwiki.com/Wild_Growth
- ^ New druid Heal over Time spell.  Add to <b>Global - HOT Counter</b> and <b>Global - HoTs</b>. (localization.lua)
+ ^ New druid Heal over Time spell.  Add to <b>Global - HOT Counter</b>. (localization.lua)
  <blockquote><pre>XPERL_HIGHLIGHT_SPELLS = {
  	hotSpells  = {
  		[GetSpellInfo(26982)] = 12,			-- Rejuvenation
venoman Jun 04, 2009 at 10:38 UTC Changed description:
- There are three new druid healing spells that xperl doesn't account for.  The problems are easily fixed and just need to be implemented:
+ There are 3 druid healing spells added with 3.0 that xperl doesn't account for.  The problems are easily fixed and just need to be implemented:
  http://www.wowwiki.com/Revive
  ^ Druid resurrect spell, Add to <b>(charname) Resurrecting</b> and <b>Resurrected</b> raid frame notifications (XPerl_Raid.lua)
venoman Jun 04, 2009 at 10:27 UTC Create

You must login to post a comment. Don't have an account? Register to get one!

Facts

Last updated
Aug 07, 2009
Reported
Jun 04, 2009
Status
Fixed - Developer made requested changes. QA should verify.
Type
Defect - A shortcoming, fault, or imperfection
Priority
Medium - Normal priority.
Votes
0

Reported by

Possible assignees