From a5f1f7aa48ca4796f67fbda4d859475ed4772598 Mon Sep 17 00:00:00 2001 From: jenz Date: Sun, 23 Feb 2025 14:28:32 +0100 Subject: [PATCH] removed some extra info --- .../scripting/mapchooser_extended_avg_mapend.sp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mapchooser_extended/scripting/mapchooser_extended_avg_mapend.sp b/mapchooser_extended/scripting/mapchooser_extended_avg_mapend.sp index 45e15fab..4c2c6365 100755 --- a/mapchooser_extended/scripting/mapchooser_extended_avg_mapend.sp +++ b/mapchooser_extended/scripting/mapchooser_extended_avg_mapend.sp @@ -1585,21 +1585,21 @@ public Action Timer_Countdown(Handle timer) if (strlen(most_voted_map[2]) > 0) { //displaying 3 most voted maps - PrintHintTextToAll("Votes: %i/%i, %ds left\n1. %s: (%i/%i)\n2. %s: (%i/%i)\n3. %s: (%i/%i)", voted_so_far, total_votes, - "%", g_iInterval, most_voted_map[0], most_voted[0], total_votes, most_voted_map[1], most_voted[1], total_votes, - most_voted_map[2], most_voted[2], total_votes); + PrintHintTextToAll("Votes: %i/%i, %ds left\n1. %s: (%i)\n2. %s: (%i)\n3. %s: (%i)", voted_so_far, total_votes, + "%", g_iInterval, most_voted_map[0], most_voted[0], most_voted_map[1], most_voted[1], + most_voted_map[2], most_voted[2]); } else if (strlen(most_voted_map[1]) > 0) { //displaying 2 most voted maps - PrintHintTextToAll("Votes: %i/%i, %ds left\n1. %s: (%i/%i)\n2. %s: (%i/%i)", voted_so_far, total_votes, g_iInterval, - most_voted_map[0], most_voted[0], total_votes, most_voted_map[1], most_voted[1], total_votes); + PrintHintTextToAll("Votes: %i/%i, %ds left\n1. %s: (%i)\n2. %s: (%i)", voted_so_far, total_votes, g_iInterval, + most_voted_map[0], most_voted[0], most_voted_map[1], most_voted[1]); } else if (strlen(most_voted_map[0]) > 0) { //displaying the most voted map - PrintHintTextToAll("Votes: %i/%i, %ds left\n1. %s: (%i/%i)", voted_so_far, total_votes, - g_iInterval, most_voted_map[0], most_voted[0], total_votes); + PrintHintTextToAll("Votes: %i/%i, %ds left\n1. %s: (%i)", voted_so_far, total_votes, + g_iInterval, most_voted_map[0], most_voted[0]); } else {