2 Commits

Author SHA1 Message Date
Not
c49702c33b create README.md 2022-03-28 13:27:11 +02:00
Not
6244847b81 fix ranking numbers x offset for 10, 100 2022-03-28 13:19:50 +02:00
2 changed files with 4 additions and 2 deletions

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Leaderboard plugin for srb2kart
https://mb.srb2.org/addons/time-attack-leaderboard.3742/

View File

@ -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