at least you can end the stage

This commit is contained in:
rafi1212122
2023-05-29 06:55:15 +07:00
parent ad02e1785a
commit 761f9c130d
24 changed files with 1491 additions and 51 deletions

View File

@@ -0,0 +1,20 @@
using Common;
using Common.Resources.Proto;
namespace PemukulPaku.GameServer.Handlers
{
[PacketCmdId(CmdId.GetConfigReq)]
internal class GetConfigReqHandler : IPacketHandler
{
public void Handle(Session session, Packet packet)
{
GetConfigRsp Rsp = new()
{
retcode = GetConfigRsp.Retcode.Succ,
ServerCurTime = (uint)Global.GetUnixInSeconds(),
};
session.Send(Packet.FromProto(Rsp, CmdId.GetConfigRsp));
}
}
}