diff --git a/mods/ctf/ctf_modebase/features.lua b/mods/ctf/ctf_modebase/features.lua index 1d5748dea..e13d8429b 100644 --- a/mods/ctf/ctf_modebase/features.lua +++ b/mods/ctf/ctf_modebase/features.lua @@ -704,13 +704,15 @@ return { minetest.log("action", string.format( "[CAPDEBUG] div: %.1f {team_score = %d, capture_score = %d, connected_players = %d, lost_team_count = %d, ".. - "player_attempts = %d, \"%s\"},", + "player_attempts = %d, time = %d, winteam_score = %d, \"%s\"},", team_score / score, team_score, score, #ctf_teams.get_connected_players(), ctf_teams.online_players[lost_team].count, player_scores[pname].flag_attempts or 0, + os.time() - ctf_map.start_time, + team_scores[pteam].score or 0, many_teams and "many teams" or "2 teams" )) end