Add new, smaller welcome message, to replace ascii logo

This commit is contained in:
Lucas Nicodemus 2015-02-28 17:50:44 -07:00
parent 861ba0493e
commit 260ba9c77c

View file

@ -221,7 +221,6 @@ namespace TShockAPI
HandleCommandLinePostConfigLoad(Environment.GetCommandLineArgs()); HandleCommandLinePostConfigLoad(Environment.GetCommandLineArgs());
Backups = new BackupManager(Path.Combine(SavePath, "backups")); Backups = new BackupManager(Path.Combine(SavePath, "backups"));
Backups.KeepFor = Config.BackupKeepFor; Backups.KeepFor = Config.BackupKeepFor;
Backups.Interval = Config.BackupInterval; Backups.Interval = Config.BackupInterval;
@ -285,6 +284,8 @@ namespace TShockAPI
if (Initialized != null) if (Initialized != null)
Initialized(); Initialized();
Log.ConsoleInfo("Welcome to TShock for Terraria. Initialization complete.");
} }
catch (Exception ex) catch (Exception ex)
{ {