From b880820cfaf511d6c1cfeeccabb346dcba7d3364 Mon Sep 17 00:00:00 2001 From: Derek S <44935661+Derek-R-S@users.noreply.github.com> Date: Tue, 18 May 2021 12:20:22 -0500 Subject: [PATCH] KCP Default transport --- ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Config.cs b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Config.cs index 7ef295a8..38227e1f 100644 --- a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Config.cs +++ b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Config.cs @@ -10,7 +10,7 @@ public class Config // Required Settings //======================== public string TransportDLL = "MultiCompiled.dll"; - public string TransportClass = "Mirror.SimpleWebTransport"; + public string TransportClass = "kcp2k.KcpTransport"; public string AuthenticationKey = "Secret Auth Key"; public ushort TransportPort = 7777; public int UpdateLoopTime = 10;