The "Play Stats" page does not appear to calculate the Nickels correctly. A nickel would be games you have played at least 5 of. But instead it only includes games you have played at least 6 of.
I downloaded the source code and found the issue. In ui/model/PlayStats.java:71-73, it reads:
} else if (playCount > 5) {
numberOfNickels++;
}
This should be "playCount >= 5" and not just "playCount > 5". If you are looking for additional contributors for this project, I may be able to help out.
The "Play Stats" page does not appear to calculate the Nickels correctly. A nickel would be games you have played at least 5 of. But instead it only includes games you have played at least 6 of.
See more information and screenshots, see Facebook post on BoardGameGeek group: https://www.facebook.com/groups/132851767828/permalink/10155024485467829
I downloaded the source code and found the issue. In ui/model/PlayStats.java:71-73, it reads:
This should be "playCount >= 5" and not just "playCount > 5". If you are looking for additional contributors for this project, I may be able to help out.