Renamed settings to start with a Capital letter

Removed config read on post init. Already read in SetupConfig which is called in Init
Added option to disable auto saving
This commit is contained in:
high 2011-06-25 00:44:07 -04:00
parent d369852998
commit 17cd6652d7
7 changed files with 48 additions and 30 deletions

View file

@ -98,6 +98,16 @@ namespace TShockAPI
Write(message, LogLevel.Info);
}
/// <summary>
/// Writes an informative string to the log file. Also outputs to the console.
/// </summary>
/// <param name="message">The message to be written.</param>
public static void ConsoleInfo(String message)
{
Console.WriteLine(message);
Write(message, LogLevel.Info);
}
/// <summary>
/// Writes a debug string to the log file.
/// </summary>