game: fix:

This commit is contained in:
starnakin 2024-04-08 16:06:56 +02:00
parent 68535cf52b
commit bceb26790d

View File

@ -27,7 +27,7 @@ class GameManager():
if (game_type == "pong"):
game = PongGame(game_id, self)
elif (game_type == "tictactoe"):
game = PongGame(game_id, self)
game = TicTacToeGame(game_id, self)
self._game_list.append(game)