Fix missing space before death messages in join phase
This commit is contained in:
parent
d12aabb190
commit
a8198327d0
@ -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"):
|
||||
|
Loading…
x
Reference in New Issue
Block a user