Fix up code style in last commit
This commit is contained in:
parent
ac4e98e076
commit
b197ead7f0
1 changed files with 9 additions and 7 deletions
|
@ -69,10 +69,12 @@ function ctf_stats.get_formspec_match_summary(stats, winner_team, winner_player,
|
||||||
math.floor((time % 3600) / 60), -- minutes
|
math.floor((time % 3600) / 60), -- minutes
|
||||||
math.floor(time % 60)) -- seconds
|
math.floor(time % 60)) -- seconds
|
||||||
end
|
end
|
||||||
|
|
||||||
local red_kd = math.floor(red.kills / red.deaths * 10) / 10
|
local red_kd = math.floor(red.kills / red.deaths * 10) / 10
|
||||||
if red.deaths <1 then
|
if red.deaths <1 then
|
||||||
red_kd = red.kills
|
red_kd = red.kills
|
||||||
end
|
end
|
||||||
|
|
||||||
local blue_kd = math.floor(blue.kills / blue.deaths * 10) / 10
|
local blue_kd = math.floor(blue.kills / blue.deaths * 10) / 10
|
||||||
if blue.deaths <1 then
|
if blue.deaths <1 then
|
||||||
blue_kd = blue.kills
|
blue_kd = blue.kills
|
||||||
|
@ -98,8 +100,8 @@ function ctf_stats.get_formspec_match_summary(stats, winner_team, winner_player,
|
||||||
ret = ret .. "label[6.5,0;Kills]"
|
ret = ret .. "label[6.5,0;Kills]"
|
||||||
ret = ret .. "label[8,0;" .. render_team_stats(red, blue, "kills") .. "]"
|
ret = ret .. "label[8,0;" .. render_team_stats(red, blue, "kills") .. "]"
|
||||||
ret = ret .. "label[3.5,0;Team K/D]"
|
ret = ret .. "label[3.5,0;Team K/D]"
|
||||||
ret = ret .. "label[5,0;" .. minetest.colorize(red.color, tostring(red_kd))
|
ret = ret .. "label[5,0;" .. minetest.colorize(red.color, tostring(red_kd)) ..
|
||||||
.. " - " .. " " .. minetest.colorize(blue.color, tostring(blue_kd)) .. "]"
|
" - " .. " " .. minetest.colorize(blue.color, tostring(blue_kd)) .. "]"
|
||||||
ret = ret .. "label[6.5,0.5;Attempts]"
|
ret = ret .. "label[6.5,0.5;Attempts]"
|
||||||
ret = ret .. "label[8,0.5;" .. render_team_stats(red, blue, "attempts") .. "]"
|
ret = ret .. "label[8,0.5;" .. render_team_stats(red, blue, "attempts") .. "]"
|
||||||
ret = ret .. "label[9.5,0;Duration]"
|
ret = ret .. "label[9.5,0;Duration]"
|
||||||
|
|
Loading…
Reference in a new issue