Error [32765, Game Full] When below max players

I have a lobby setup where players are able to create and see rooms in a list, Rooms are all maxed at 4 players.

I have a problem where the 4th player attempting to join a room cannot join, and receives the above error code.
After 5-10 seconds of retrying the problem disappears and the room will accept the 4th player.

I have some values being debugged, and the values for PhotonNetwork.room.playerCount for the players in the room correctly shows only 3.

Comments

  • This occurred because I was mistakenly doubling up the onclick listeners for the join button, so it was trying to join multiple times per person! Lesson learned :blush: check your code thoroughly!
  • Thanks for letting us know :)
  • No problem! the internet is full of too many troubleshooting threads where the OP simply states "I fixed it!" leaving everyone else in the dark.