public override void ServerStop()
        {
            if (Server != null)
            {
                if (LogType != IgnoranceLogType.Nothing)
                {
                    Console.WriteLine("Ignorance Server Instance shutting down...");
                }

                Server.Stop();
            }

            ConnectionLookupDict.Clear();
        }
Example #2
0
        public override void ServerStop()
        {
            if (Server != null)
            {
                if (LogType != IgnoranceLogType.Nothing)
                {
                    Debug.Log("Ignorance Server instance is shutting down...");
                }

                Server.Stop();
            }

            // ENetPeerToMirrorLookup.Clear();
            ConnectionLookupDict.Clear();
        }