Skip to content

Commit

Permalink
extra check to lich
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Jan 7, 2024
1 parent 38f4250 commit 357ce2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions class_configs/nec_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -934,13 +934,14 @@ local _ClassConfig = {
name = "LichSpell",
type = "Spell",
active_cond = function(self, spell) return RGMercUtils.BuffActiveByID(spell.RankName.ID()) end,
cond = function(self, spell) return self.settings.DoLich and RGMercUtils.SelfBuffCheck(spell) and not RGMercUtils.AAReady("Mortifier's Unity") end,
cond = function(self, spell) return self.settings.DoLich and RGMercUtils.SelfBuffCheck(spell) and not RGMercUtils.AAReady("Mortifier's Unity") and
mq.TLO.Me.PctHPs() > 30 end,
},
{
name = "Death Bloom",
type = "AA",
active_cond = function(self, aaName) return RGMercUtils.SongActive(mq.TLO.AltAbility(aaName).Spell.RankName()) end,
cond = function(self, _) return mq.TLO.Me.PctMana() < self.settings.DeathBloomPercent end,
cond = function(self, aaName) return RGMercUtils.AAReady(aaName) and mq.TLO.Me.PctMana() < self.settings.DeathBloomPercent end,
},
-- Leaving this out because it mems every 60s and thats wonky.
--{
Expand Down
2 changes: 1 addition & 1 deletion extras/version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return { commitId = 'de30aa0 2024-01-06' }
return { commitId = '38f4250 2024-01-06' }

0 comments on commit 357ce2e

Please sign in to comment.