Skip to content

Commit

Permalink
MR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
asaf-kali committed Jan 18, 2025
1 parent 34d83a8 commit 4a0f68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/bot/handlers/gameplay/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def handle(self):
game_config = self.config or GameConfig()
language = SupportedLanguage(game_config.language)
request = ClassicStartGameRequest(language=language, first_team=game_config.first_team)
response = self.api_client.classic.start_classic_game(request)
response = self.api_client.classic.start_game(request)
log.update_context(game_id=response.game_id)
log.debug("Game starting", extra={"game_id": response.game_id, "game_config": game_config.dict()})
session = Session(game_id=response.game_id, config=game_config)
Expand Down

0 comments on commit 4a0f68e

Please sign in to comment.