Skip to content

Commit a634a9e

Browse files
authored
Merge pull request #9 from jsTron/develop
Fix games played
2 parents bc503d0 + c333508 commit a634a9e

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

ReboundLogParser/ReboundLogParser/MainForm.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,8 @@ public double SumPlayerStats(Player player)
324324
player.Stats.ContributedGoals +
325325
player.Stats.FaceoffsLost +
326326
player.Stats.FaceoffsWon +
327-
player.Stats.GamesPlayed +
327+
// This stat is broken, do not use!!
328+
//player.Stats.GamesPlayed +
328329
player.Stats.GameWinningGoals +
329330
player.Stats.Goals +
330331
player.Stats.Losses +

ReboundLogParser/ReboundLogParser/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("6.3.0.0")]
36-
[assembly: AssemblyFileVersion("6.3.0.0")]
35+
[assembly: AssemblyVersion("6.3.1.0")]
36+
[assembly: AssemblyFileVersion("6.3.1.0")]

0 commit comments

Comments
 (0)