Heya, I'm trying to do some matchmaking setup. Here's my CreateMatchRequest, which all seems to work fine:
matchRequest.matchAttributes not populating
Code (CSharp):
- CreateMatchRequest create = new CreateMatchRequest();
- create.size = maxPerRoom;
- create.advertise = true;
- create.matchAttributes = new Dictionary<string, long>();
- create.password = string.Empty;...