From c234b4c78f8cd5456b9e7d8b8e799911f5b29b81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 18 Jun 2023 20:39:26 +0200 Subject: [PATCH] Send the join message/ping also in skirmish. --- OpenRA.Game/Server/Server.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenRA.Game/Server/Server.cs b/OpenRA.Game/Server/Server.cs index 4d1002a93d..dd04724da1 100644 --- a/OpenRA.Game/Server/Server.cs +++ b/OpenRA.Game/Server/Server.cs @@ -580,8 +580,7 @@ namespace OpenRA.Server Log.Write("server", $"{client.Name} ({newConn.EndPoint}) has joined the game."); - if (Type != ServerType.Local) - SendLocalizedMessage(Joined, Translation.Arguments("player", client.Name)); + SendLocalizedMessage(Joined, Translation.Arguments("player", client.Name)); if (Type == ServerType.Dedicated) {