From 027b5f1aceef632a094fd16a3c27106b0644adf5 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Thu, 4 Jun 2015 03:07:47 +0100 Subject: fixed inversion between black and white cards Signed-off-by: Olivier Gayot --- CAO_GameManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3