diff --git a/SharedLibraryCore/PartialEntities/EFClient.cs b/SharedLibraryCore/PartialEntities/EFClient.cs index 289d583b7..9815f7314 100644 --- a/SharedLibraryCore/PartialEntities/EFClient.cs +++ b/SharedLibraryCore/PartialEntities/EFClient.cs @@ -100,7 +100,10 @@ namespace SharedLibraryCore.Database.Models [NotMapped] public int Score { get; set; } - [NotMapped] public bool IsBot => NetworkId == Name.GenerateGuidFromString() || IPAddressString == System.Net.IPAddress.Broadcast.ToString(); + [NotMapped] + public bool IsBot => NetworkId == Name.GenerateGuidFromString() || + IPAddressString == System.Net.IPAddress.Broadcast.ToString() || + IPAddressString == "unknown"; [NotMapped] public bool IsZombieClient => IsBot && Name == "Zombie";