I’m a bit lost here… I can update the host of the lobby by going through the list of players and set the hostID to someone that wasn’t the host before, then update the lobby data, all good.
But that seems to be only the first step, how does that new lobby host now become a real host, like in the NetworkManager? It seems that updating the lobby hostID has no effect.
Yes, I’m using both. First I check with QuickJoinLobby if there is an open one and if so, get the joincode from it and join, then I call NetworkManager.Singleton.StartClient();
Otherwise I create a lobby, set the relay allocations, and call NetworkManager.Singleton.StartHost();
When I migrate the lobby host, the NetworkManager stays the same. If the host shuts down after migrating the lobby, a new player does not find that lobby.
Yes they have separate Host.
Lobby has Host migration but Relay doesn’t have.
And most important Host in your situation is Relay’s Host.
Because Network Manager’s Host is also Relay’s Host.
oh damn, so that means host migration in terms of lobby is only passing on who can change settings? But if the NetworkManager host decides to leave the game, it’s over for every one?
how to do lobby host migration? if host crashes or his wifi disconnects, lobby is destroyed after 30s … how to detect if lobby host is offline and transfer host role to new client?