Error [32765, Game Full] When below max players

The whole answer can be found below.

Please note: The Photon forum is closed permanently. After many dedicated years of service we have made the decision to retire our forum and switch to read-only: we've saved the best to last! And we offer you support through these channels:

Try Our
Documentation

Please check if you can find an answer in our extensive documentation on PUN.

Join Us
on Discord

Meet and talk to our staff and the entire Photon-Community via Discord.

Read More on
Stack Overflow

Find more information on Stack Overflow (for Circle members only).

Write Us
an E-Mail

Feel free to send your question directly to our developers.

Error [32765, Game Full] When below max players

JC@Totem
2015-07-27 16:25:44

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

JC@Totem
2015-07-27 16:44:01

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!

Tobias
2015-07-28 09:10:42

Thanks for letting us know :)

JC@Totem
2015-07-28 15:28:51

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.

Back to top