v1.2.17_hf

This commit is contained in:
Not 2022-03-28 13:16:00 +02:00
parent 647e4a0299
commit f53a6ba91f
1 changed files with 4 additions and 4 deletions

View File

@ -121,7 +121,7 @@ local function getScoreTable(map, flags)
--return id
local mode = flags & F_SPBATK
return lb[mode] and lb[mode][map] or {}
return lb[mode] and lb[mode][map] or nil
end
local function score_t(map, name, skin, color, time, splits, flags, restat)
@ -171,7 +171,7 @@ if f then
flags = tonumber(t[7])
end
local scoreTable = getScoreTable(tonumber(t[1]), flags)
local scoreTable = getScoreTable(tonumber(t[1]), flags) or {}
local spl = {}
if t[6] != nil then
@ -865,7 +865,7 @@ end
-- Find location of player and scroll to it
function scroll_to(player)
local m = getScoreTable(gamemap, Flags)
local m = getScoreTable(gamemap, Flags) or {}
scrollToPos = 2
for pos, score in ipairs(m) do
@ -879,7 +879,7 @@ function scroll_to(player)
end
local function saveTime(player)
local scoreTable = getScoreTable(gamemap, Flags)
local scoreTable = getScoreTable(gamemap, Flags) or {}
local newscore = score_t(
gamemap,