From 28189920d4412e704c6be70ad3997b0eb18d9afa Mon Sep 17 00:00:00 2001 From: ANAND Date: Fri, 8 Nov 2019 08:00:46 +0530 Subject: [PATCH] Remove leftover debug messages from 2653a09 --- mods/ctf/ctf_alloc/init.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mods/ctf/ctf_alloc/init.lua b/mods/ctf/ctf_alloc/init.lua index a09463f..e565a20 100644 --- a/mods/ctf/ctf_alloc/init.lua +++ b/mods/ctf/ctf_alloc/init.lua @@ -57,23 +57,19 @@ local function update_lowest() lowest.team = tname end end - print("\nlowest = " .. dump(lowest) .. "\n") end local function calc_scores() -- Update the cumulative score of all teams - print("\n[calc_scores]") for tname, team in pairs(ctf.teams) do local score = 0 for pname, _ in pairs(team.players) do score = score + ctf_stats.player(pname).score end scores[tname] = score - print("\t" .. tname .. " = " .. score) end update_lowest() - print("[calc_scores] ********\n") end -- Override team-allocation logic