From a7ad36b961eef0533a3b9534c1dcafb5d62c774b Mon Sep 17 00:00:00 2001 From: vrubelroman Date: Sun, 16 Nov 2025 21:32:33 +0300 Subject: [PATCH] bug fix /addgamer after /start --- LichessClientTG_bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LichessClientTG_bot/bot.py b/LichessClientTG_bot/bot.py index 5dc71dd..6a45c6e 100644 --- a/LichessClientTG_bot/bot.py +++ b/LichessClientTG_bot/bot.py @@ -1014,7 +1014,7 @@ class LichessBot: ) # Add handlers - application.add_handler(CommandHandler("start", self.start)) + application.add_handler(CommandHandler("start", self.start_and_addgamer)) application.add_handler(CommandHandler("addgamer", self.addgamer_start)) application.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, self.handle_username)) application.add_handler(addtoken_conv)