forked from Not/srb2k-leaderboard
fix ranking numbers x offset for 10, 100
This commit is contained in:
parent
f53a6ba91f
commit
6244847b81
@ -766,10 +766,10 @@ local function drawScroll(v, player, scoreTable, gui)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local x = 10
|
local x = 10
|
||||||
if #scoreTable > 10 then
|
if #scoreTable >= 10 then
|
||||||
x = x + 8
|
x = x + 8
|
||||||
end
|
end
|
||||||
if #scoreTable > 100 then
|
if #scoreTable >= 100 then
|
||||||
x = x + 8
|
x = x + 8
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user