From 1ee1ce1e1b38bf87050ba64415472235e1385e0e Mon Sep 17 00:00:00 2001 From: GreenBlob <19584306-OrangeBlob@users.noreply.gitlab.com> Date: Thu, 23 May 2024 00:22:24 +0800 Subject: [PATCH] Fix indentation --- mods/ctf/ctf_modebase/summary.lua | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/mods/ctf/ctf_modebase/summary.lua b/mods/ctf/ctf_modebase/summary.lua index f63f688c9..345573558 100644 --- a/mods/ctf/ctf_modebase/summary.lua +++ b/mods/ctf/ctf_modebase/summary.lua @@ -27,28 +27,28 @@ function ctf_modebase.summary.get(prev) local rankings = current_mode.recent_rankings return - rankings.players(), team_rankings(rankings.teams()), current_mode.summary_ranks, { - title = "Match Summary", - special_row_title = "Total Team Stats", - game_stat = game_stat, - winner = winner, - duration = ctf_map.get_duration(), - map = ctf_map.current_map.name, - buttons = {previous = previous ~= nil}, - allow_sort = true, - } + rankings.players(), team_rankings(rankings.teams()), current_mode.summary_ranks, { + title = "Match Summary", + special_row_title = "Total Team Stats", + game_stat = game_stat, + winner = winner, + duration = ctf_map.get_duration(), + map = ctf_map.current_map.name, + buttons = {previous = previous ~= nil}, + allow_sort = true, + } elseif previous ~= nil then return - previous.players, team_rankings(previous.teams), previous.summary_ranks, { - title = "Previous Match Summary", - special_row_title = "Total Team Stats", - game_stat = previous.game_stat, - winner = previous.winner, - duration = previous.duration, - map = previous.map, - buttons = {next = true}, - allow_sort = true, - } + previous.players, team_rankings(previous.teams), previous.summary_ranks, { + title = "Previous Match Summary", + special_row_title = "Total Team Stats", + game_stat = previous.game_stat, + winner = previous.winner, + duration = previous.duration, + map = previous.map, + buttons = {next = true}, + allow_sort = true, + } end end