Fixed a typo using e instead of a :(

This commit is contained in:
NotAlwaysTrue
2025-12-27 18:47:50 +08:00
parent bd643503b3
commit 21a2863a1a
4 changed files with 9 additions and 9 deletions
@@ -2771,8 +2771,8 @@ namespace Barotrauma
commands.Add(new Command("ShowServerPerf", "Immediately log server performance info in ServerMessage", (string[] args) =>
{
GameServer.Log(PerformenceMonitor.PM.ToString(), ServerLog.MessageType.ServerMessage);
NewMessage(PerformenceMonitor.PM.ToString(), Color.Green);
GameServer.Log(PerformanceMonitor.PM.ToString(), ServerLog.MessageType.ServerMessage);
NewMessage(PerformanceMonitor.PM.ToString(), Color.Green);
}));
#if DEBUG