From f82b9ce6c0f7a9c15ba659a5f1f46d16a2761d66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Sun, 8 May 2016 18:52:10 +0200 Subject: [PATCH] hint on close command on game start --- bot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index fecd2dd..fa94158 100644 --- a/bot.py +++ b/bot.py @@ -259,8 +259,9 @@ def start_game(bot, update, args): sticker=c.STICKERS[str(game.last_card)], timeout=2.5) send_async(bot, chat_id, - text="First player: " + - display_name(game.current_player.user)) + text="First player: %s\n" + "Use /close to stop people from joining the game." + % display_name(game.current_player.user)) elif len(args) and args[0] == 'select': players = gm.userid_players[update.message.from_user.id]