1
0

show map with players on telegram bot

This commit is contained in:
andrea
2025-07-28 20:45:42 +02:00
parent 5002890540
commit 56da6031f2
5 changed files with 48 additions and 26 deletions

View File

@@ -61,6 +61,12 @@ async def cmd_get_ranking_players(context, update, chat_id):
async def cmd_simulate_day(context, update, chat_id):
return await _bot_simulation.simulate_day(context, chat_id)
async def cmd_show_game_map(context, update, chat_id):
Arena= context.application.bot_data['arena']
Gamemap= Arena.get_map()
rendered_map= Gamemap.get_renderized_map()
return await update.message.reply_text(rendered_map)
async def cmd_simulate_day_cron(context, update, chat_id):
context.application.bot_data['ask_seconds'] = 1
if 'ask_name' in context.application.bot_data: