Hiding room

Hi,
In my game I am hiding room after maximum number of players are there in the room.
Code:
PhotonNetwork.room.open = false;
PhotonNetwork.room.visible = false;

In my game we have a functionality that masterclient can rejoin the game. In this case when I disconnect from Photon server I am unable to join the room as room is not open and invisible.
How can make that room visible?
I tried to make room visible on non master clients but the room is still not visible.
How can I make the masterclient to rejoin the same room?
Also is there any property that can be used to make room invisible (except open or visible) after all the players have joined the room?

Comments

  • Hi,
    Anyone please help me
  • If the Master drops out, some other player becomes master. In this case, open the room again (room.open = true). It's still hidden from matchmaking but anyone who knows the room's name can join it.
    If the Master Client crashed and didn't send a proper "disconnect", then it's old connection might take a few seconds to time out. In that time, the players still assume the dropped Master is there and won't open the room. If your Master wants to re-join really quick, this can be a problem.

    Why do you ask for "another" way to make rooms invisible?
    It's the only way to do.
  • I need to display a list of visible rooms. If that room is not visible for matchmaking then how I can show that room in list of available rooms?
  • You want to hide it but show it in a list of rooms?
    I am confused! :)
    Please explain the plan.
  • I want to hide the room when all players have joined the room, but when a player leaves a room I want to make that room visible again so that other players can join that room.
  • Set isVisible respectively. It should work as expected.