Time zone wrong
Hey Slut! Love your mod been using it for almost a year now I do believe. Just updated the mod and noticed the time stamp whish is great. However its not synced properly with the server time. I am currently on CST/CDT and the server is located in Chicago, but the time stamp is PST...

I have alot of PHP background and a bit of Java but C# is a little beyond me and I dont know what to do with the "{DateTime.Now.ToLocalTime().ToShortTimeString()}" to reflect the proper time. Any help would be much appreciated!
Change this:

string discordMessage = $"[{DateTime.Now.ToShortTimeString()}] {GetLang("PlayerChatFormat", null, player.Name, message)}";

To

string timeZoneId = "Central Standard Time";
string discordMessage = $"[{TimeZoneInfo.ConvertTime(DateTime.Now, TimeZoneInfo.FindSystemTimeZoneById(timeZoneId)).ToShortTimeString()}] {GetLang("PlayerChatFormat", null, player.Name, message)}";