private void Start()
 {
     Instance = this;
     if (R.Settings.Instance.AutomaticShutdown.Enabled)
     {
         shutdownTime = startedTime.ToUniversalTime().AddSeconds(R.Settings.Instance.AutomaticShutdown.Interval);
         Logging.Logger.Log("This server will automatically shutdown in " + R.Settings.Instance.AutomaticShutdown.Interval + " seconds (" + shutdownTime.ToString() + " UTC)");
     }
     started = true;
 }
 private void Start()
 {
     Instance = this;
     if (R.Settings.Instance.AutomaticShutdown.Enabled)
     {
         shutdownTime = startedTime.ToUniversalTime().AddSeconds(R.Settings.Instance.AutomaticShutdown.Interval);
         Logger.Log("This server will automatically shutdown in " + R.Settings.Instance.AutomaticShutdown.Interval + " seconds (" + shutdownTime.ToString() + " UTC)");
     }
     started = true;
 }