diff options
-rw-r--r-- | draughts/statTracker.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/draughts/statTracker.js b/draughts/statTracker.js index d8dd971..9d863d1 100644 --- a/draughts/statTracker.js +++ b/draughts/statTracker.js @@ -2,10 +2,10 @@ * stats get displayed on the splash screen. */ var gameStatus = { - minimumMoves: Infinity, - averageMoves: Infinity, - ongoingGames: 0, - totalGames: 0 + minimumMoves: Infinity, // The minimum amount of moves a game was completed in + averageMoves: Infinity, // The average amount of moves games are completed in + ongoingGames: 0, // The number of ongoing games + totalGames: 0 // The number of total games started (used for calculations) } module.exports = gameStatus; |