Skip to content

Commit

Permalink
commetening the satety routine
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Jan 7, 2024
1 parent 6627f56 commit de30aa0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions class_configs/nec_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,9 @@ local _ClassConfig = {
-- Downtime doesn't have state because we run the whole rotation at once.
{ name = 'Downtime', targetId = function(self) return mq.TLO.Me.ID() end, cond = function(self, combat_state) return combat_state == "Downtime" and RGMercUtils.DoBuffCheck() end, },
{
-- this will always run first in combat to check for things like FD or stand up
-- if you add to it make sure it remains pretty short because everythign will be
-- evalutated before we move to combat.
name = 'Safety',
targetId = function(self) return RGMercConfig.Globals.AutoTargetID end,
cond = function(self, combat_state)
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 = '72e8198 2024-01-06' }
return { commitId = '6627f56 2024-01-06' }

0 comments on commit de30aa0

Please sign in to comment.