I have written out to slam on aura bloodsurge but hb just constantly spams slam regardless on the buff
CreateSpellCheckAndCast("Slam",
ret => Me.HasAura("Bloodsurge"))
any ideas?
EDIT:
Fixed by doing this instead
CreateSpellCheckAndCast("Slam",
ret => Me.ActiveAuras.ContainsKey("Bloodsurge"))
CreateSpellCheckAndCast("Slam",
ret => Me.HasAura("Bloodsurge"))
any ideas?
EDIT:
Fixed by doing this instead
CreateSpellCheckAndCast("Slam",
ret => Me.ActiveAuras.ContainsKey("Bloodsurge"))
Last edited: