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

@ -153,7 +153,7 @@
"fjoin_success": "\u0002{0}\u0002 used fjoin and raised the number of players to \u0002{1}\u0002.",
"fquit_success": "\u0002{0}\u0002 is forcing \u0002{1}\u0002 to leave.",
"fquit_goodbye": "Say goodbye to the \u0002{0}\u0002.",
"no_players_remaining":" No more players remaining.",
"no_players_remaining": "No more players remaining.",
"new_player_count": "New player count: \u0002{0}\u0002",
"fstart_success": "\u0002{0}\u0002 has forced the game to start.",
"account_reidentify": "Please reidentify to the account \u0002{0}\u0002",

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)