Skip to content

Commit

Permalink
Decrease lowbie level range
Browse files Browse the repository at this point in the history
  • Loading branch information
SabreValkyrn committed Jan 18, 2023
1 parent aa64918 commit 055353d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RankSentinel.lua
Expand Up @@ -274,7 +274,7 @@ end
function addon:IsMaxRank(spellID, casterLevel, targetLevel)
-- UnitLevel(destName) returns 0 for non-party members
-- Ignore casts with larger than 10 level differences
if targetLevel >= 1 and targetLevel < casterLevel - 10 then return true end
if targetLevel >= 1 and targetLevel < casterLevel - 8 then return true end

local lookup_key = fmt('%s-%s', spellID, casterLevel)

Expand Down

0 comments on commit 055353d

Please sign in to comment.