diff --git a/UnityProject/Assets/Mirror/Runtime/Transport/LRM/LRMTransport/LightReflectiveMirrorTransport.cs b/UnityProject/Assets/Mirror/Runtime/Transport/LRM/LRMTransport/LightReflectiveMirrorTransport.cs index a1f19ad..3b1c5aa 100644 --- a/UnityProject/Assets/Mirror/Runtime/Transport/LRM/LRMTransport/LightReflectiveMirrorTransport.cs +++ b/UnityProject/Assets/Mirror/Runtime/Transport/LRM/LRMTransport/LightReflectiveMirrorTransport.cs @@ -12,7 +12,6 @@ namespace LightReflectiveMirror [DefaultExecutionOrder(1001)] public partial class LightReflectiveMirrorTransport : Transport { - private void OnConnectedToRelay() => _connectedToRelay = true; public bool IsAuthenticated() => _isAuthenticated; private void Awake() { @@ -61,6 +60,12 @@ namespace LightReflectiveMirror serverStatus = "Disconnected from relay."; } + private void OnConnectedToRelay() + { + _connectedToRelay = true; + RequestServerList(); + } + public void ConnectToRelay() { if (!useLoadBalancer)