Files
PemukulPaku/GameServer/Handlers/RefreshGodWarTicketReqHandler.cs
2023-06-04 15:23:53 +07:00

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));
}
}
}