Changing Room Name during session

I'm looking at making a change to allow the host to change the room name.
Firstly is this a good idea, or are there possible issues around doing that?
Secondly, is there an event that gets fired if the room name changes for players in the room?

Comments

  • Hi @SniperED007,

    no, you can't change the name of the room after it has been created. The room name is somehow its unique ID. When you create a room with a certain name, the name is checked on the server if it there is already another room with that name. In this case the client will receive a certain error message, that his room can not be created - an exception here is when using JoinOrCreateRoom.
  • Thanks, I ended up going with room properties instead.