ErrorCode.GameFull

Options

I have a computer acting as a server (host), and other computers join the host's session as clients. My current plan of Fusion is the free plan which offers 20 CCUs.

9 players can join the session successfully. However, when the 10th player tries to join, it returns the error ErrorCode.GameFull and fails to join the session.

Given that the server is counted as 1 player, I assume that only 10 CCU are allowed per session.

However, I was not able to find anywhere in the code or settings, where the maximum possible players in a session is set to 10.

Can anyone explain how I can increase this limit? (I expect to be able to have 19 players with the free plan)


Thank You

Best Answer

  • Isaac_Augusto
    Answer ✓
    Options

    Hi,

    Did you provide the PlayerCount on the StartGameArgs when starting the session?

    It looks like the problem here is that the session is full.

    -----

    Isaac Augusto

    Photon Fusion Team

Answers

  • Isaac_Augusto
    Answer ✓
    Options

    Hi,

    Did you provide the PlayerCount on the StartGameArgs when starting the session?

    It looks like the problem here is that the session is full.

    -----

    Isaac Augusto

    Photon Fusion Team

  • kbaghaei
    Options

    I checked the PlayerCount's default value which was set as 10 in NetworkProjectConfig.

    So, I changed it and the problem was resolved.


    Thank You