Skip to content

Commit

Permalink
gameWinners fix wrong datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
songz committed Nov 25, 2013
1 parent 92a1e7c commit 5773b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/node-poker.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ function Table(smallBlind, bigBlind, minPlayers, maxPlayers, minBuyIn, maxBuyIn)
this.playersToRemove = [];
this.playersToAdd = [];
this.eventEmitter = new events.EventEmitter();
this.turnBet = {}
this.gameWinners = {}
this.turnBet = {};
this.gameWinners = [];

//Validate acceptable value ranges.
var err;
Expand Down

0 comments on commit 5773b82

Please sign in to comment.