Skip to content

Commit

Permalink
Outlaw debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Oct 21, 2024
1 parent 9236f42 commit e7eceb2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions TheWarWithin/RogueOutlaw.lua
Original file line number Diff line number Diff line change
Expand Up @@ -906,8 +906,7 @@ spec:RegisterHook( "reset_precast", function()

if buff[ bone ].up then
local bone_duration = buff[ bone ].duration
rtbAuraAppliedBy[ bone ] = bone_duration < rollDuration and "count_the_odds" or bone_duration > rollDuration and "keep_it_rolling" or "roll_the_bones"
Hekili:Debug( " - %-20s %5.2f : %5.2f %s | %s", bone, buff[ bone ].remains, bone_duration, rtb_buffs_will_lose_buff[ bone ] and "lose" or "keep", rtbAuraAppliedBy[ bone ] or "unknown" )
Hekili:Debug( " - %-20s %5.2f : %5.2f %s", bone, buff[ bone ].remains, bone_duration, bone_duration < rollDuration and "shorter" or bone_duration > rollDuration and "longer" or "normal" )
end
end
end
Expand Down

0 comments on commit e7eceb2

Please sign in to comment.