Skip to content

Commit

Permalink
Merge pull request #971 from NimbusBP1729/blackjack_bug
Browse files Browse the repository at this point in the history
fixed blackjack init selection bug
  • Loading branch information
Jordan Hoff committed Mar 11, 2013
2 parents 38da2c5 + 011a285 commit ba1b4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blackjackgame.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function state:init( )
{ name = 'BET -', action = 'bet_down' },
{ name = 'QUIT', action = 'quit', active = true },
}
self.selection = 2
self.selection = 4

self.player_bets={}
self.player_bets[1] = 2
Expand Down Expand Up @@ -97,7 +97,7 @@ function state:enter(previous, player, screenshot)

self.options_x = 395 + camera.x
self.options_y = 145 + camera.y
self.selection = 2
self.selection = 4
self.player_bets={}
self.player_bets[1] = 2

Expand Down

0 comments on commit ba1b4fc

Please sign in to comment.