Change to start number of cards from 2 to 7

This commit is contained in:
imlonghao 2016-04-27 00:20:15 +08:00
parent 67daa82ece
commit 6777e0f40c
No known key found for this signature in database
GPG key ID: 12D09AA0058BCBA0

View file

@ -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