remove static serving & ely realm prep

This commit is contained in:
rafi1212122
2023-06-04 15:23:53 +07:00
parent c7f0c661ed
commit 9cf5e313a3
6 changed files with 53 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
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));
}
}
}