Fixed config being wrong

This commit is contained in:
Derek 2021-01-18 17:20:50 -06:00
parent d096abe59b
commit 8c34ca4756

View file

@ -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;
}
}