Skip to content

Commit

Permalink
otro fix enorme
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeluduena committed Nov 13, 2023
1 parent 67bc074 commit 073c25b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routers/games/action_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ def process_analysis_card(game: Game, player: Player, objective_player: Player):
result['cards'] = [c.name for c in objective_player.hand]
result['objective_player_name'] = objective_player.name

for i in range (len(result['cards']) - 1):
result["cards"][i] = result["cards"][i] + ", "
for i in range (1 ,(len(result['cards']))):
result["cards"][i] = " " + result["cards"][i]

asyncio.ensure_future(send_analysis_card_played_event(player.id,
objective_player.name, result['cards']))
Expand Down

0 comments on commit 073c25b

Please sign in to comment.