codegard1 / blackjack

Nonstandard blackjack game implemented with React and Fluent UI 1
https://ciaervo-blackjack.netlify.app/
0 stars 0 forks source link

Implement Betting mechanism per player #8

Open codegard1 opened 7 years ago

codegard1 commented 7 years ago

Each player has a bank prop that is the amount of money they have left to play with.

codegard1 commented 7 years ago

this doesn't seem right somehow _ante() { const players = this.state.players; players.forEach(player, index => { this._bet(null, null, index, this.state.minimumBet); }); }