Change to start number of cards from 2 to 7
This commit is contained in:
parent
67daa82ece
commit
6777e0f40c
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class Player(object):
|
|||
game.current_player = self
|
||||
game.owner = self
|
||||
|
||||
for i in range(2):
|
||||
for i in range(7):
|
||||
self.cards.append(self.game.deck.draw())
|
||||
|
||||
self.bluffing = False
|
||||
|
|
Loading…
Reference in a new issue