Skip to content

Commit

Permalink
Typo fix for SK
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Mar 9, 2024
1 parent a1309d7 commit 468c3b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion class_configs/shd_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ local _ClassConfig = {
},
['DPS'] = {
{
name = "Encroaching Darknesss",
name = "Encroaching Darkness",
tooltip = Tooltips.EncroachingDarkness,
type = "AA",
cond = function(self)
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 = '98cb073 2024-03-09' }
return { commitId = 'a1309d7 2024-03-09' }
4 changes: 2 additions & 2 deletions utils/rgmercs_utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ function RGMercUtils.CanUseAA(aaName)
local haveAbility = mq.TLO.Me.AltAbility(aaName)()
local levelCheck = haveAbility and mq.TLO.Me.AltAbility(aaName).MinLevel() <= mq.TLO.Me.Level()
local rankCheck = haveAbility and mq.TLO.Me.AltAbility(aaName).Rank() > 0
RGMercsLogger.log_verbose("CanUseAA(%s): haveAbility(%s) levelCheck(%s) rankCheck(%s)", aaName, RGMercUtils.BoolToColorString(haveAbility),
RGMercsLogger.log_super_verbose("CanUseAA(%s): haveAbility(%s) levelCheck(%s) rankCheck(%s)", aaName, RGMercUtils.BoolToColorString(haveAbility),
RGMercUtils.BoolToColorString(levelCheck), RGMercUtils.BoolToColorString(rankCheck))
return haveAbility and levelCheck and rankCheck
end
Expand All @@ -270,7 +270,7 @@ end
function RGMercUtils.AAReady(aaName)
local canUse = RGMercUtils.CanUseAA(aaName)
local ready = mq.TLO.Me.AltAbilityReady(aaName)()
RGMercsLogger.log_verbose("AAReady(%s): ready(%s) canUse(%s)", aaName, RGMercUtils.BoolToColorString(ready), RGMercUtils.BoolToColorString(canUse))
RGMercsLogger.log_super_verbose("AAReady(%s): ready(%s) canUse(%s)", aaName, RGMercUtils.BoolToColorString(ready), RGMercUtils.BoolToColorString(canUse))
return ready and canUse
end

Expand Down

0 comments on commit 468c3b7

Please sign in to comment.