Fix wrong port, was 7070 but it should be 7777 as default

This commit is contained in:
cxxpxr 2021-04-08 19:41:55 -04:00
parent b84448ea11
commit 23165b7d1f

View file

@ -16,7 +16,7 @@ namespace LightReflectiveMirror
[CustomEditor(typeof(LightReflectiveMirrorTransport))] [CustomEditor(typeof(LightReflectiveMirrorTransport))]
public class LRMInspector : Editor public class LRMInspector : Editor
{ {
int serverPort = 7070; int serverPort = 7777;
string serverIP; string serverIP;
float invalidServerIP = 0; float invalidServerIP = 0;
bool usingLLB = false; bool usingLLB = false;