Skip to content

Commit

Permalink
fix: Update session metrics processing to exclude GameMode 3 for Wave…
Browse files Browse the repository at this point in the history
…Index 1
  • Loading branch information
f-fsantos committed Nov 6, 2024
1 parent a88f8c2 commit e6d5561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/savedata/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func ProcessSessionMetrics(save defs.SessionSaveData, username string) {
}
}

if save.WaveIndex == 1 {
if save.WaveIndex == 1 && save.GameMode != 3 {
party := ""
for i := 0; i < len(save.Party); i++ {
partyMember, ok := save.Party[i].(map[string]interface{})
Expand Down

0 comments on commit e6d5561

Please sign in to comment.