fix: Update session metrics processing to exclude GameMode 3 for WaveIndex 1

pull/60/head
Frederico Santos 3 weeks ago
parent a88f8c2dc5
commit e6d55617df

@ -85,7 +85,7 @@ func ProcessSessionMetrics(save defs.SessionSaveData, username string) {
} }
} }
if save.WaveIndex == 1 { if save.WaveIndex == 1 && save.GameMode != 3 {
party := "" party := ""
for i := 0; i < len(save.Party); i++ { for i := 0; i < len(save.Party); i++ {
partyMember, ok := save.Party[i].(map[string]interface{}) partyMember, ok := save.Party[i].(map[string]interface{})

Loading…
Cancel
Save