started work on getting the restart functionality in the gamelogserver

fix bug with unbanned players still showing as banned via lock icon
move player based stuff into client class
finally renamed Player to EFClient via partial class
don't try to run this build because it's in between stages
This commit is contained in:
RaidMax
2018-11-05 21:01:29 -06:00
parent d9d548ea18
commit ed83c4c011
65 changed files with 864 additions and 743 deletions

View File

@ -19,8 +19,8 @@ namespace WebfrontCore.ViewComponents
ClientCount = s.ClientNum,
MaxClients = s.MaxClients,
GameType = s.Gametype,
PlayerHistory = s.PlayerHistory.ToArray(),
Players = s.GetPlayersAsList()
PlayerHistory = s.ClientHistory.ToArray(),
Players = s.GetClientsAsList()
.Select(p => new PlayerInfo()
{
Name = p.Name,