What happens when JoinOrCreate is called an the desired room is full?

Options
Hello there,
what happens when I let the user call the JoinOrCreate room method and the desired room to enter is full like 8/8.

Actually i want to open the next room with the same name +1 (room1, room2 etc.). Does it happen automatically?

Greets

Comments

  • JohnTube
    JohnTube ✭✭✭✭✭
    Options
    Hi @Jaudatus,

    The join operation will fail and the server will return an error response.
    The callback triggered is IMatchmakingCallbacks.OnJoinRoomFailed(short returnCode, string message).

    Does it happen automatically?
    No. You need to do it yourself.
  • Jaudatus
    Options
    Thank you!