From a8198327d00633c418204a4f51b392b68fe33c16 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sat, 29 Apr 2017 11:09:04 +0200 Subject: [PATCH] Fix missing space before death messages in join phase --- src/wolfgame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index e6a589c..efc826e 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -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"):