Fix the admin panel only listing your character name (#3229)

This commit is contained in:
DrSmugleaf
2021-02-16 09:11:15 +01:00
committed by GitHub
parent ae5f971fc3
commit cf7ac025b4
5 changed files with 127 additions and 34 deletions

View File

@@ -0,0 +1,22 @@
using Lidgren.Network;
using Robust.Shared.Network;
namespace Content.Shared.Administration.AdminMenu
{
public class AdminMenuPlayerListRequest : NetMessage
{
#region REQUIRED
public static readonly MsgGroups GROUP = MsgGroups.Command;
public static readonly string NAME = nameof(AdminMenuPlayerListRequest);
public AdminMenuPlayerListRequest(INetChannel channel) : base(NAME, GROUP) { }
#endregion
public override void ReadFromBuffer(NetIncomingMessage buffer)
{
}
public override void WriteToBuffer(NetOutgoingMessage buffer)
{
}
}
}