Revert "Clearly indicate not enough players for game mode"

This reverts commit aedf39efceed7a356380d0834c5ac7c51c3b3a49.
See comment in github on that commit for reasoning.
This commit is contained in:
skizzerz 2016-07-22 21:45:15 -05:00
parent 89b38794e1
commit 265a1cc442

View File

@ -2327,7 +2327,7 @@ def show_votes(cli, nick, chan, rest):
if num_votes >= len(pl)/2:
majority = True
else:
votelist.append("{0}: {1} (not enough players)".format(gamemode, num_votes))
votelist.append("{0}: {1}".format(gamemode, num_votes))
the_message = ", ".join(votelist)
if len(pl) >= var.MIN_PLAYERS:
the_message += messages["majority_votes"].format("; " if votelist else "", int(math.ceil(len(pl)/2)))