Skip to content

Commit

Permalink
- Paladin class fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Feb 19, 2024
1 parent 8018e6d commit 24c2eb2
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions class_configs/pal_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,10 @@ return {
return
groupIds
end,
cond = function(self, combat_state) return combat_state == "Downtime" and RGMercUtils.DoBuffCheck() and
RGMercConfig:GetTimeSinceLastMove() > RGMercUtils.GetSetting('BuffWaitMoveTimer') end,
cond = function(self, combat_state)
return combat_state == "Downtime" and RGMercUtils.DoBuffCheck() and
RGMercConfig:GetTimeSinceLastMove() > RGMercUtils.GetSetting('BuffWaitMoveTimer')
end,
},
{
name = 'Burn',
Expand Down Expand Up @@ -1153,35 +1155,35 @@ return {
name = "Divine Protector's Unity",
type = "AA",
cond = function(self, aaName)
return RGMercUtils.AAReady(aaName) and self.ClassConfig.HelperFunctions.castDPU()
return RGMercUtils.AAReady(aaName) and self.ClassConfig.HelperFunctions.castDPU(self)
end,
},
{
name = "ArmorSelfBuff",
type = "Spell",
cond = function(self, spell)
return not self.ClassConfig.HelperFunctions.castDPU() and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
return not self.ClassConfig.HelperFunctions.castDPU(self) and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
end,
},
{
name = "FuryProc",
type = "Spell",
cond = function(self, spell)
return not self.ClassConfig.HelperFunctions.castDPU() and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
return not self.ClassConfig.HelperFunctions.castDPU(self) and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
end,
},
{
name = "Remorse",
type = "Spell",
cond = function(self, spell)
return not self.ClassConfig.HelperFunctions.castDPU() and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
return not self.ClassConfig.HelperFunctions.castDPU(self) and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
end,
},
{
name = "Piety",
type = "Spell",
cond = function(self, spell)
return not self.ClassConfig.HelperFunctions.castDPU() and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
return not self.ClassConfig.HelperFunctions.castDPU(self) and RGMercUtils.PCSpellReady(spell) and RGMercUtils.SelfBuffCheck(spell)
end,
},
{
Expand Down

0 comments on commit 24c2eb2

Please sign in to comment.