Keep players in the PlayerTab until round end (#5921)

* Rework AdminSystem to keep players in the PlayerTab until round end

* Prevent sending PlayerStatus to deadminned admins

* Change _playerList to non-nullable

* Clean up unused usings

* Consolidate duplicate foreach loop code
This commit is contained in:
ShadowCommander
2021-12-30 07:12:28 -08:00
committed by GitHub
parent b4808786da
commit 9d70bdde9c
3 changed files with 34 additions and 75 deletions

View File

@@ -1,13 +0,0 @@
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Network;
using Robust.Shared.Serialization;
namespace Content.Shared.Administration.Events
{
[NetSerializable, Serializable]
public class PlayerInfoRemovalMessage : EntityEventArgs
{
public NetUserId NetUserId;
}
}