From 2d9a398883954a2fcc5edc6590b7c91780200d1a Mon Sep 17 00:00:00 2001 From: Ignacio Belitzky Date: Wed, 8 Nov 2023 23:21:01 -0300 Subject: [PATCH] Hotfix - Se arregla error menor en range de carta analisis para el cheat --- app/routers/websockets/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/websockets/services.py b/app/routers/websockets/services.py index 7c85f29..22fa002 100644 --- a/app/routers/websockets/services.py +++ b/app/routers/websockets/services.py @@ -73,7 +73,7 @@ async def handle_message(data, player_id): apply_cheat(game_name, player_id, range(53, 55)) await send_event_cheat_used(player_id) elif message == "an" or message == "anĂ¡lisis" or message == "analysis": - apply_cheat(game_name, player_id, range(27, 31)) + apply_cheat(game_name, player_id, range(27, 30)) await send_event_cheat_used(player_id)