Made console change text color depending on messages

This commit is contained in:
Twitchy 2011-07-08 23:38:02 +12:00
parent 16a90f3240
commit 1d5ac77255
4 changed files with 14 additions and 1 deletions

View file

@ -280,7 +280,9 @@ namespace TShockAPI
public override void SendMessage(string msg, byte red, byte green, byte blue)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(msg);
Console.ForegroundColor = ConsoleColor.Gray;
}
public void SetBloodMoon(bool bloodMoon)