Skip to content

Commit

Permalink
this
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Jul 11, 2024
1 parent 3902f0b commit e52238f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElvUI/Core/Modules/Misc/InfoItemLevel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ function M:UpdateSlotPoints(which, config)

local weapon = i == 16 or i == 17 or i == 18
for u = 1, 10 do
local offset = (showItemLevel and 8 or 0) + ((showItemLevel and u or u-1) * 16)
local offset = (showItemLevel and 8 or 0) + ((u - (showItemLevel and 0 or 1)) * 16)
local newX = (weapon and 0) or ((justify == 'BOTTOMLEFT' or itemRight) and x+offset) or x-offset
local newY = (weapon and offset+40) or y

Expand Down

0 comments on commit e52238f

Please sign in to comment.