Skip to content

Commit

Permalink
Fix Suppression mastery
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalIdentity committed Aug 14, 2022
1 parent 49dd720 commit 456c70d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Modules/ModParser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2543,8 +2543,8 @@ local specialModList = {
["+(%d+)%% chance to suppress spell damage if your boots, helmet and gloves have evasion"] = function(num) return {
mod("SpellSuppressionChance", "BASE", tonumber(num),
{ type = "StatThreshold", stat = "EvasionOnBoots", threshold = 1},
{ type = "StatThreshold", stat = "EvasionOnHelmet", threshold = 1, upper = true},
{ type = "StatThreshold", stat = "EvasionOnGloves", threshold = 1, upper = true}
{ type = "StatThreshold", stat = "EvasionOnHelmet", threshold = 1},
{ type = "StatThreshold", stat = "EvasionOnGloves", threshold = 1}
)
} end,
["+(%d+)%% chance to suppress spell damage for each dagger you're wielding"] = function(num) return {
Expand Down

0 comments on commit 456c70d

Please sign in to comment.