From aedf39efceed7a356380d0834c5ac7c51c3b3a49 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Fri, 22 Jul 2016 23:58:26 +0200 Subject: [PATCH] Clearly indicate not enough players for game mode --- src/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index d7c0728..ab665da 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -2322,7 +2322,7 @@ def show_votes(cli, nick, chan, rest): if num_votes >= len(pl)/2: majority = True else: - votelist.append("{0}: {1}".format(gamemode, num_votes)) + votelist.append("{0}: {1} (not enough players)".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)))