"Completed" player can't reconnect to previous GameSession
1
Hello, atm I'm testing with just one gamesession. And if one player leaves the session, I do GameLiftServerAPI.RemovePlayerSession(playerSessionId) and the player gets the status "Completed". But then he can't join this session anymore, even so the session is still up & running.
What do I have to change, that the player can join the session again?
PS: My configs:
- Backfill mode: Automatic
- FlexMatch mode: WITH_QUEUE
- Matchmaking Ruleset algorithm: { "balancedAttribute" : "skill", "strategy" : "balanced", "batchingPreference": "largestPopulation" },
Topics
Tags
asked a month ago101 views
1 Answers
0
Hello, A COMPLETED player session is not re-usable. You would have to create a new player session. Backfill is used to fill existing game session with new players. By removing that player session, that player session is marked COMPLETED and cannot join backfill. Best, June Ho
answered a month ago
Relevant questions
Flexmatch is filled and status is "COMPLETED" but there is no Gamesession
asked 3 months agoHow to check if player is in air?
Accepted Answerasked 4 years ago[Unreal] How to remove a PlayerSession when Player leaves a GameSession?
asked 10 months agoPlayer Session Rejected
Accepted Answerasked 10 months ago"Completed" player can't reconnect to previous GameSession
asked a month agoOnUpdateGameSession handler function is not invoked when a backfill request is cancelled due to duplicate player ids
asked 2 years agoIVS player for Angular
asked a year agoPlayer Session Still ACTIVE After Client Disconnected
asked 12 days agoMatchmaking event of type MatchmakingSucceeded did not contain player session ids of new incoming players
Accepted Answerasked 2 years agoAcceptPlayerSession() accepts existing active player session
asked 2 years ago
Hello June Ho, thanks for your answer! And how can I create a new player session for that player, so that he can join this gamesession again?