Skip to content

Commit

Permalink
Solo Paladine error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Mar 28, 2024
1 parent 68e53f0 commit 8f71873
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
17 changes: 14 additions & 3 deletions class_configs/pal_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -655,22 +655,32 @@ return {
{
name = "WaveHeal",
type = "Spell",
cond = function(self, _) return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt') end,
cond = function(self, _)
if not mq.TLO.Group() then return false end
return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt')
end,
},
{
name = "WaveHeal2",
type = "Spell",
cond = function(self, _) return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt') end,
cond = function(self, _)
if not mq.TLO.Group() then return false end
return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt')
end,
},
{
name = "Aurora",
type = "Spell",
cond = function(self, _) return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt') end,
cond = function(self, _)
if not mq.TLO.Group() then return false end
return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt')
end,
},
{
name = "Gift of Life",
type = "AA",
cond = function(self, aaName)
if not mq.TLO.Group() then return false end
return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt') and
RGMercUtils.AAReady(aaName)
end,
Expand All @@ -679,6 +689,7 @@ return {
name = "Hand of Piety",
type = "AA",
cond = function(self, aaName)
if not mq.TLO.Group() then return false end
return mq.TLO.Group.Injured(RGMercUtils.GetSetting('GroupHealPoint'))() > RGMercUtils.GetSetting('GroupInjureCnt') and
RGMercUtils.AAReady(aaName)
end,
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 = 'a884751 2024-03-26' }
return { commitId = '68e53f0 2024-03-27' }

0 comments on commit 8f71873

Please sign in to comment.