[BUG] Hide Admins != PlayercountSolved

When 'Hide Admins' is set to true the total player count still includes them. So for example the player count might show 21 players online but the list only shows 20 players (doesn't include the hidden Admin). This defeats the purpose of hiding the Admin because the total player count tells the tale that he is online.

Based on the current version 1.1.2 change the following two lines to:

Line 473

int count = onlinePlayers.Count;​

Line 605
int count = sleeperPlayers.Count;​


These two lists (onlinePlayers, sleeperPlayers) already consider the `HideAdmins` config and can be reused here.

Works like a charm! Thanks!

Locked automatically