1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

add a bit more logged for when live radar fail to update

update killhouse map offsets (it's still wrong though)
This commit is contained in:
RaidMax
2019-07-29 12:08:25 -05:00
parent e3802388af
commit 984573c902
10 changed files with 97 additions and 22 deletions

View File

@ -709,7 +709,8 @@ namespace IW4MAdmin.Application
public IList<EFClient> GetActiveClients()
{
return _servers.SelectMany(s => s.Clients).Where(p => p != null).ToList();
// we're adding another to list here so we don't get a collection modified exception..
return _servers.SelectMany(s => s.Clients).ToList().Where(p => p != null).ToList();
}
public ClientService GetClientService()