From dc221eab293637c5b4ff9e1a7812af7bc3d3f527 Mon Sep 17 00:00:00 2001 From: Ekaropolus Date: Sun, 6 Jul 2025 02:04:05 -0600 Subject: [PATCH] Change of bot name --- pxy_bots/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pxy_bots/views.py b/pxy_bots/views.py index 5bb34d9..4e5782b 100644 --- a/pxy_bots/views.py +++ b/pxy_bots/views.py @@ -49,7 +49,7 @@ async def telegram_webhook(request, bot_name): text = update.message.text or "" # 🚀 Citizen bot - if bot_name == "pepebasurita": + if bot_name == "PepeBasuritaCoinsBot": if text == "/start": await start(update) elif text == "/help": @@ -70,7 +70,7 @@ async def telegram_webhook(request, bot_name): await update.message.reply_text(bot_response) # 🚚 City collector bot - elif bot_name == "pepecamioncito": + elif bot_name == "PepeCamioncitoBot": if text == "/start": await start(update) elif text == "/help": @@ -85,7 +85,7 @@ async def telegram_webhook(request, bot_name): await city_eco_score(update) # 🚛 Private collector bot - elif bot_name == "pepemotito": + elif bot_name == "PepeMotitoBot": if text == "/start": await start(update) elif text == "/help":