summaryrefslogtreecommitdiff
path: root/swiftstory/Board.py
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2020-05-15 02:35:56 +0200
committerOlivier Gayot <olivier.gayot@sigexec.com>2020-05-15 03:13:01 +0200
commit0c9ee93b7381e9a198ff1efa6703d4cb68a0b58d (patch)
tree7946784ba32442ca9b35255c838d3a124423537d /swiftstory/Board.py
parente560cb629851cd27191756a62e5aca43150d3bdf (diff)
Don't pass the cards to the constructor of board
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/Board.py')
-rw-r--r--swiftstory/Board.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/swiftstory/Board.py b/swiftstory/Board.py
index 5176e55..f14df41 100644
--- a/swiftstory/Board.py
+++ b/swiftstory/Board.py
@@ -5,9 +5,9 @@ class Board:
''' This class automatically handles the reshuffling of different deck/heap
of cards '''
- def __init__(self, white_cards, black_cards):
- self.white_pick = white_cards
- self.black_pick = black_cards
+ def __init__(self):
+ self.white_pick = list()
+ self.black_pick = list()
self.white_recycled = []
self.black_recycled = []
@@ -17,8 +17,6 @@ class Board:
# tupple of cards / player currently being played
self.played_cards = []
- random.shuffle(self.white_pick)
- random.shuffle(self.black_pick)
def reveal_next_black_card(self):
if self.current_black_card is not None: