Skip to content

Commit

Permalink
Hotfix - Se arregla error menor en range de carta analisis para el cheat
Browse files Browse the repository at this point in the history
  • Loading branch information
ignabelitzky committed Nov 9, 2023
1 parent 82e346b commit 2d9a398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routers/websockets/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 2d9a398

Please sign in to comment.