mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-14 12:24:38 +01:00
okey
This commit is contained in:
16
GameServer/Handlers/GetCustomHeadDataReqHandler.cs
Normal file
16
GameServer/Handlers/GetCustomHeadDataReqHandler.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Common.Resources.Proto;
|
||||
|
||||
namespace PemukulPaku.GameServer.Handlers
|
||||
{
|
||||
[PacketCmdId(CmdId.GetCustomHeadDataReq)]
|
||||
internal class GetCustomHeadDataReqHandler : IPacketHandler
|
||||
{
|
||||
public void Handle(Session session, Packet packet)
|
||||
{
|
||||
GetCustomHeadDataRsp Rsp = new() { retcode = GetCustomHeadDataRsp.Retcode.Succ, IsAll = true };
|
||||
Rsp.CustomHeadLists.Add(new CustomHead() { Id = 161001 });
|
||||
|
||||
session.Send(Packet.FromProto(Rsp, CmdId.GetCustomHeadDataRsp));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user