Fix missing space before death messages in join phase

This commit is contained in:
nyuszika7h 2017-04-29 11:09:04 +02:00
parent d12aabb190
commit a8198327d0

View File

@ -3256,9 +3256,9 @@ def leave(var, what, user, why=None):
var.START_VOTES.clear()
if lpl <= 0:
population = messages["no_players_remaining"]
population = " " + messages["no_players_remaining"]
else:
population = messages["new_player_count"].format(lpl)
population = " " + messages["new_player_count"].format(lpl)
reveal = ""
if get_role(user.nick) == "person" or var.ROLE_REVEAL not in ("on", "team"):