diff options
Diffstat (limited to 'CAO_GameManager.py')
-rw-r--r-- | CAO_GameManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CAO_GameManager.py b/CAO_GameManager.py index afd7f09..a3a12e5 100644 --- a/CAO_GameManager.py +++ b/CAO_GameManager.py @@ -13,6 +13,6 @@ class CAO_GameManager(): if game is None: print('Starting new game') - game = self.games[game_name] = CAO_Game(self.black_cards, self.white_cards) + game = self.games[game_name] = CAO_Game(self.white_cards, self.black_cards) return game |