From a62b085f1d95c856f1be6e4240ea193c4fdadd34 Mon Sep 17 00:00:00 2001 From: Gustas <37534529+PunkPun@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:55:46 +0200 Subject: [PATCH] Add a name to the server thread --- OpenRA.Game/Server/Server.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Server/Server.cs b/OpenRA.Game/Server/Server.cs index f99f777ed6..02651bff27 100644 --- a/OpenRA.Game/Server/Server.cs +++ b/OpenRA.Game/Server/Server.cs @@ -399,7 +399,7 @@ namespace OpenRA.Server Conns.Clear(); }) - { IsBackground = true }.Start(); + { IsBackground = true, Name = "ServerThread" }.Start(); } int nextPlayerIndex;