Skip to content

Commit

Permalink
engraving sod bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
d87 committed Jan 10, 2024
1 parent d6c1951 commit d759cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.classic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Cooldown( 403629, { name = "Chaos Bolt", color = colors.TEAL3,
if C_Engraving.IsEngravingEnabled() then
local INVSLOT_HAND = 10
local engravingInfo = C_Engraving.GetRuneForEquipmentSlot(INVSLOT_HAND);
return engravingInfo.iconTexture == 236291
return engravingInfo and engravingInfo.iconTexture == 236291
end
return false
end })
Expand All @@ -59,7 +59,7 @@ Cooldown( 403501 ,{ name = "Haunt", short = "", priority = 8, ghost = true, colo
if C_Engraving.IsEngravingEnabled() then
local INVSLOT_HAND = 10
local engravingInfo = C_Engraving.GetRuneForEquipmentSlot(INVSLOT_HAND);
return engravingInfo.iconTexture == 236298
return engravingInfo and engravingInfo.iconTexture == 236298
end
return false
end })
Expand Down

0 comments on commit d759cd8

Please sign in to comment.