removed some extra info

This commit is contained in:
jenz 2025-02-23 14:28:32 +01:00
parent 239d53c57b
commit a5f1f7aa48

View File

@ -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
{