mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
Fix so gauntlet opponent win count is accurate
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user