From c8a20636d99acf15edf5d48c8f0078460da2d9d3 Mon Sep 17 00:00:00 2001 From: cxxpxr <60411087+cxxpxr@users.noreply.github.com> Date: Wed, 7 Apr 2021 18:42:57 -0400 Subject: [PATCH] remove unused --- .../LRM_LoadBalancer/Config.cs | 1 - ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Endpoint.cs | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer/Config.cs b/LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer/Config.cs index b265bc9..a961dca 100644 --- a/LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer/Config.cs +++ b/LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer/Config.cs @@ -11,7 +11,6 @@ namespace LightReflectiveMirror.LoadBalancing public int ConnectedServerPingRate = 10000; public string AuthKey = "AuthKey"; public ushort EndpointPort = 7070; - public ushort RelayEndpointPort = 8080; public bool ShowDebugLogs = false; } } diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Endpoint.cs b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Endpoint.cs index 9dc4e99..68085fd 100644 --- a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Endpoint.cs +++ b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Endpoint.cs @@ -103,8 +103,9 @@ namespace LightReflectiveMirror.Endpoints return true; } - catch + catch (Exception e) { + Console.WriteLine(e); return false; }