Clearly indicate not enough players for game mode
This commit is contained in:
parent
db519a6827
commit
aedf39efce
@ -2322,7 +2322,7 @@ def show_votes(cli, nick, chan, rest):
|
|||||||
if num_votes >= len(pl)/2:
|
if num_votes >= len(pl)/2:
|
||||||
majority = True
|
majority = True
|
||||||
else:
|
else:
|
||||||
votelist.append("{0}: {1}".format(gamemode, num_votes))
|
votelist.append("{0}: {1} (not enough players)".format(gamemode, num_votes))
|
||||||
the_message = ", ".join(votelist)
|
the_message = ", ".join(votelist)
|
||||||
if len(pl) >= var.MIN_PLAYERS:
|
if len(pl) >= var.MIN_PLAYERS:
|
||||||
the_message += messages["majority_votes"].format("; " if votelist else "", int(math.ceil(len(pl)/2)))
|
the_message += messages["majority_votes"].format("; " if votelist else "", int(math.ceil(len(pl)/2)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user