1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

don't count bots on master list

don't save every ac snapshot oops..
This commit is contained in:
RaidMax
2019-06-16 12:19:23 -05:00
parent 475861a769
commit d5ece456d8
3 changed files with 20 additions and 14 deletions

View File

@ -295,7 +295,7 @@ namespace SharedLibraryCore
{
get
{
return Clients.Where(p => p != null).Count();
return Clients.Where(p => p != null && !p.IsBot).Count();
}
}
public int MaxClients { get; protected set; }