add mode to profile name for range of game modes (#1375)

This commit is contained in:
John Pekcan
2021-04-16 16:01:24 -05:00
committed by GitHub
parent 3fa588c1f8
commit f2a23f5ba1

View File

@ -24,7 +24,7 @@ func generateProfiles() []*pb.MatchProfile {
modes := []string{"mode.demo", "mode.ctf", "mode.battleroyale"}
for _, mode := range modes {
profiles = append(profiles, &pb.MatchProfile{
Name: "mode_based_profile",
Name: "mode_based_profile_" + mode,
Pools: []*pb.Pool{
{
Name: "pool_mode_" + mode,