Please add the ability to see messages in the RustAdmin console that were transmitted through Rcon (for example, Battlemetrics).
void OnRconCommand(IPAddress ip, string command, string[] args)
{
if (command == "say")
{
string saytext = "";
foreach (string arg in args)
{
saytext += arg + " ";
}
Puts($"[Rcon] {saytext}");
}
}