Cata Warlock.lua has soul shard requirement for Chaos Bolt and Shadowburn
georgedeam opened this issue ยท 1 comments
Before You Begin
- I confirm that I have downloaded the latest version of the addon.
- I am not playing on a private server.
- I checked for an existing, open ticket for this issue and was not able to find one.
- I edited the title of this issue (above) so that it describes the issue I am reporting.
- I am reporting an issue with the default priority included with the specialization (imported or edited priorities are not supported).
Describe the Issue
in the cataclysm warlock.lua file Chaos Bolt and Shadowburn have a Soul Shard requirement and will not be recommended once there are no Soul Shards remaining.
-- Instantly blasts the target for 91 to 104 Shadow damage. If the target dies within 5 sec of Shadowburn, and yields experience or honor, the caster gains a Soul Shard.
shadowburn = {
id = 17877,
cast = 0,
cooldown = 15,
gcd = "spell",
spend = function() return mod_cataclysm( 0.2 ) end,
spendType = "mana",
spend = 1,
spendType = "soul_shards",
talent = "shadowburn",
startsCombat = true,
texture = 136191,
usable = function()
return target.health.pct < 20, "target must be below 20% health"
end,
handler = function ()
applyDebuff( "target", "shadowburn" )
end,
},
How to Reproduce
- spec Destruction warlock
- follow rotation until soul shards are gone
- chaos bolt will stop being recommended
Snapshot (Link)
Raidbots Sim Report (Link)
No response
Additional Information
Commenting out this section under chaos_bolt and shadowburn sections of aura will resolve this
spend = 1,
spendType = "soul_shards",
Contact Information
No response