From 8c34ca47563956370695fa073cd9e4bf9479ce96 Mon Sep 17 00:00:00 2001 From: Derek Date: Mon, 18 Jan 2021 17:20:50 -0600 Subject: [PATCH] Fixed config being wrong --- ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs b/ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs index c49964b..02b85ce 100644 --- a/ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs +++ b/ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs @@ -6,10 +6,10 @@ namespace LightReflectiveMirror { class Config { - public string TransportDLL = "SimpleWebSocketTransportCompiled.dll"; - public string TransportClass = "Mirror.SimpleWeb.SimpleWebTransport"; + public string TransportDLL = "MultiCompiled.dll"; + public string TransportClass = "Mirror.SimpleWebTransport"; public string AuthenticationKey = "Secret Auth Key"; - public int UpdateLoopTime = 50; - public int UpdateHeartbeatInterval = 20; + public int UpdateLoopTime = 10; + public int UpdateHeartbeatInterval = 100; } }