fix missing space in quit message

This commit is contained in:
jacob1 2017-04-19 21:49:57 -04:00
parent 9067da836d
commit 16d541b1f1
2 changed files with 3 additions and 3 deletions

View File

@ -3304,9 +3304,9 @@ def leave_game(cli, nick, chan, rest):
if var.PHASE == "join":
lpl = len(list_players()) - 1
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)
else:
if not rest.startswith("-force"):
reply(cli, nick, chan, messages["leave_game_ingame_safeguard"].format(botconfig.CMD_CHAR), private=True)