Beispiel #1
0
        public Api()
        {
            try
            {
                Log.Debug("Api constructor called.");
#if DEBUG
                Log.Warning("ScriptingMod is compiled in DEBUG mode! This can hurt server performance significantly and will fill the logfile with useless information fast.");
#endif
                Log.Out("Initializing phase 1/3 ...");
                NonPublic.Init();
                PersistentData.Load();
                LitJsonTypeBindings.Register();
            }
            catch (Exception ex)
            {
                CommandTools.HandleEventException(ex, true);
                throw;
            }
        }