Skip to content

Commit 743ed43

Browse files
committed
Fixed casual Phantom Draft rate
1 parent 25dd4a0 commit 743ed43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ArtifactAPI.MatchHistory/MainWindow.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,16 @@ private void PopulateGameHistory(List<Match> allMatches)
112112
int totalDraw = allMatches.Sum(x => x.MatchOutcome == Enums.Outcome.Draw ? 1 : 0);
113113
tb_totalWinLoss.Text = $"{totalWins}/{totalDraw}/{totalLoss}";
114114

115-
116115
SetRate(Enums.MatchMode.Bot_Match, allMatches, tb_bmwr);
117116

118117
//Featured tab Gauntlet mode
119118
SetRate(Enums.GauntletType.RandomMeta, allMatches, tb_rmwr);
120119

121120
//Casual modes
122-
SetRate(Enums.GauntletType.Constructed, allMatches, tb_ccwr);
123121
SetRate(Enums.MatchMode.Matchmaking, allMatches, tb_mmwr);
124-
122+
SetRate(Enums.GauntletType.Constructed, allMatches, tb_ccwr);
123+
SetRate(Enums.GauntletType.CasualPhantomDraft, allMatches, tb_cpdwr);
124+
125125
//'Ranked' modes
126126
SetRate(Enums.GauntletType.ConstructedExpert, allMatches, tb_ecwr);
127127
SetRate(Enums.GauntletType.PhantomDraftExpert, allMatches, tb_pdwr);

0 commit comments

Comments
 (0)