fix last commit
This commit is contained in:
parent
4264f4d6e3
commit
c2dc9632b4
|
@ -232,6 +232,7 @@ class BlackJack(callbacks.Plugin):
|
|||
chips = stake
|
||||
elif stake > chips:
|
||||
chipsClass._addChips(player, stake - chips)
|
||||
chips = stake
|
||||
if stake >= self.minStake and stake <= self.maxStake and stake <= chips:
|
||||
# Now is good time to add new player and actually start a game.
|
||||
self._addNewPlayer(player, stake)
|
||||
|
|
Loading…
Reference in New Issue