Fix so gauntlet opponent win count is accurate

This commit is contained in:
drdev
2015-04-19 19:19:25 +00:00
parent e5054c6c7d
commit 4ea3e7cf46

View File

@@ -53,7 +53,7 @@ public abstract class GauntletWinLoseController {
// In all cases, update stats.
lstEventRecords.set(gd.getCompleted(), lastGame.getGamesWonBy(questPlayer) + " - "
+ (lastGame.getNumPlayedGamesInMatch() - lastGame.getGamesWonBy(questPlayer)));
+ (lastGame.getNumPlayedGamesInMatch() - lastGame.getGamesWonBy(questPlayer) + 1));
if (lastGame.isMatchOver()) {
gd.setCompleted(gd.getCompleted() + 1);