Introduce ServerType.Skirmish.

This commit is contained in:
Paul Chote
2023-11-12 18:05:28 +00:00
committed by Gustas
parent 3b67e425ed
commit 3f4f9e7354
5 changed files with 26 additions and 18 deletions

View File

@@ -102,7 +102,7 @@ namespace OpenRA.Mods.Common.Server
void INotifyServerStart.ServerStarted(S server)
{
if (server.Type != ServerType.Local && LanGameBeacon != null)
if (server.IsMultiplayer && LanGameBeacon != null)
LanGameBeacon.Start();
}