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)))