PSO2SERVER/Server/Protocol/Handlers/11-ClientHandler/11-02-CharacterListRequest.cs
2024-11-27 18:05:53 +08:00

22 lines
593 B
C#

using PSO2SERVER.Database;
using PSO2SERVER.Protocol.Packets;
using System.Linq;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x11, 0x02)]
public class CharacterListRequest : PacketHandler
{
#region implemented abstract members of PacketHandler
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context._account == null)
return;
context.SendPacket(new CharacterListPacket(context._account.AccountId));
}
#endregion
}
}