mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-17 23:14:36 +01:00
14 lines
392 B
C#
14 lines
392 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers
|
|
{
|
|
[PacketCmdId(CmdId.GetGodWarReq)]
|
|
internal class GetGodWarReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
session.Send(Packet.FromProto(new GetGodWarRsp() { retcode = GetGodWarRsp.Retcode.NotOpen }, CmdId.GetGodWarRsp));
|
|
}
|
|
}
|
|
}
|