Send success messages as Color.LightGreen

Basically Color.Green looks ugly and Color.LightGreen looks less ugly. I
could see changing the default to something like pure green, but I think
this might cause people to be like "yo why is this so bright."

Now arguably this should be configurable but I'm not going to
revolutionize the world by abandoning far more important work to allow
more artful messages. I just think that Color.Green is ugly enough that
I can't tolerate it.
This commit is contained in:
Lucas Nicodemus 2021-06-12 13:22:56 -07:00
parent 34da464bab
commit fd97c2268a
2 changed files with 2 additions and 1 deletions

View file

@ -1379,7 +1379,7 @@ namespace TShockAPI
/// <param name="msg">The message.</param>
public virtual void SendSuccessMessage(string msg)
{
SendMessage(msg, Color.Green);
SendMessage(msg, Color.LimeGreen);
}
/// <summary>