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:
@ -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()
|
||||
|
Reference in New Issue
Block a user