Aura.Shared.Util.Configuration.BaseConf.LoadDefault C# (CSharp) Method

LoadDefault() protected method

Loads several conf files that are generally required, like log, database, etc.
protected LoadDefault ( ) : void
return void
		protected void LoadDefault()
		{
			this.Log.Load();
			this.Database.Load();
			this.Localization.Load();
			this.Internal.Load();
			this.Premium.Load();

			if (this.Internal.Password == "change_me")
				Aura.Shared.Util.Log.Warning("Using the default inter server password is risky, please change it in 'inter.conf'.");
		}