Skip to content

Commit

Permalink
- Sham Slow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Feb 25, 2024
1 parent 0cadba5 commit 6e3960c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions class_configs/shm_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -862,8 +862,7 @@ local _ClassConfig = {
steps = 1,
targetId = function(self) return mq.TLO.Target.ID() == RGMercConfig.Globals.AutoTargetID and { RGMercConfig.Globals.AutoTargetID, } or {} end,
cond = function(self, combat_state)
return combat_state == "Combat" and
RGMercUtils.IsModeActive("Hybrid") and not RGMercUtils.Feigning()
return combat_state == "Combat" and not RGMercUtils.Feigning()
end,
},
{
Expand Down Expand Up @@ -967,6 +966,13 @@ local _ClassConfig = {
return RGMercUtils.GetSetting('DoSlow') and RGMercUtils.GetSetting('DoAESlow')
end,
},
{
name = "Languid Bite",
type = "AA",
cond = function(self, aaName)
return RGMercUtils.GetSetting('DoSlow') and not RGMercUtils.BuffActiveByID(mq.TLO.Spell("Languid Bite").RankName.ID())
end,
},
{
name = "Turgur's Swarm",
type = "AA",
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 = '6b1768d 2024-02-25' }
return { commitId = '0cadba5 2024-02-25' }

0 comments on commit 6e3960c

Please sign in to comment.