Fix ctf_stats migration crash on new servers
This commit is contained in:
parent
9f6ccaf386
commit
c835a117a7
1 changed files with 18 additions and 19 deletions
|
@ -23,21 +23,7 @@ function ctf_stats.load()
|
||||||
if player_stats.score > 800 then
|
if player_stats.score > 800 then
|
||||||
player_stats.score = 800
|
player_stats.score = 800
|
||||||
end
|
end
|
||||||
end
|
|
||||||
ctf.needs_save = true
|
|
||||||
end
|
|
||||||
os.remove(minetest.get_worldpath() .. "/ctf_stats.txt")
|
|
||||||
else
|
|
||||||
for _, key in pairs(data_to_persist) do
|
|
||||||
ctf_stats[key] = minetest.parse_json(storage:get_string(key))
|
|
||||||
end
|
|
||||||
|
|
||||||
ctf_stats.matches.wins = ctf_stats.matches.wins or {
|
|
||||||
red = ctf_stats.matches.red_wins or 0,
|
|
||||||
blue = ctf_stats.matches.blue_wins or 0,
|
|
||||||
}
|
|
||||||
|
|
||||||
for name, player_stats in pairs(ctf_stats.players) do
|
|
||||||
player_stats.wins = player_stats.wins or {}
|
player_stats.wins = player_stats.wins or {}
|
||||||
if player_stats.blue_wins then
|
if player_stats.blue_wins then
|
||||||
player_stats.wins.blue = player_stats.blue_wins
|
player_stats.wins.blue = player_stats.blue_wins
|
||||||
|
@ -50,6 +36,19 @@ function ctf_stats.load()
|
||||||
player_stats.wins.blue = player_stats.wins.blue or 0
|
player_stats.wins.blue = player_stats.wins.blue or 0
|
||||||
player_stats.wins.red = player_stats.wins.red or 0
|
player_stats.wins.red = player_stats.wins.red or 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
ctf_stats.matches.wins = ctf_stats.matches.wins or {
|
||||||
|
red = ctf_stats.matches.red_wins or 0,
|
||||||
|
blue = ctf_stats.matches.blue_wins or 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
ctf.needs_save = true
|
||||||
|
end
|
||||||
|
os.remove(minetest.get_worldpath() .. "/ctf_stats.txt")
|
||||||
|
else
|
||||||
|
for _, key in pairs(data_to_persist) do
|
||||||
|
ctf_stats[key] = minetest.parse_json(storage:get_string(key))
|
||||||
|
end
|
||||||
ctf.needs_save = true
|
ctf.needs_save = true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue