Compare commits

..

No commits in common. "1d4eb423d627aab69e5ec485ecb2b5c252be2b72" and "2d4784f62e9c65838e8f0be4e41b70a64a90e26b" have entirely different histories.

View File

@ -272,7 +272,6 @@ local function stat_str(stat)
end end
-- Read the leaderboard -- Read the leaderboard
if isserver then
local f = io.open(FILENAME, "r") local f = io.open(FILENAME, "r")
if f then if f then
for l in f:lines() do for l in f:lines() do
@ -328,7 +327,6 @@ if isserver then
else else
print("Failed to open file: ", FILENAME) print("Failed to open file: ", FILENAME)
end end
end
function allowJoin(v) function allowJoin(v)
if not cv_interrupt.value then if not cv_interrupt.value then
@ -1317,7 +1315,6 @@ local function saveTime(player)
StatTrack = true StatTrack = true
end end
if isserver then
local f = assert(io.open(FILENAME, "w")) local f = assert(io.open(FILENAME, "w"))
if f == nil then if f == nil then
print("Failed to open file for writing: " + FILENAME) print("Failed to open file for writing: " + FILENAME)
@ -1343,7 +1340,6 @@ local function saveTime(player)
f:close() f:close()
end end
end
-- DEBUGGING -- DEBUGGING
--local function saveLeaderboard(player, ...) --local function saveLeaderboard(player, ...)