mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 22:24:34 +01:00
16 lines
557 B
C#
16 lines
557 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers
|
|
{
|
|
[PacketCmdId(CmdId.RefreshGodWarTicketReq)]
|
|
internal class RefreshGodWarTicketReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
RefreshGodWarTicketReq Data = packet.GetDecodedBody<RefreshGodWarTicketReq>();
|
|
|
|
session.Send(Packet.FromProto(new RefreshGodWarTicketRsp() { retcode = RefreshGodWarTicketRsp.Retcode.Succ, GodWarId = Data.GodWarId }, CmdId.RefreshGodWarTicketRsp));
|
|
}
|
|
}
|
|
}
|