LeShite abyss

This commit is contained in:
rafi1212122
2023-06-04 21:36:34 +07:00
parent 2d1cee5753
commit 130f83544c
11 changed files with 242 additions and 93 deletions

View File

@@ -7,7 +7,9 @@ namespace PemukulPaku.GameServer.Handlers
{
public void Handle(Session session, Packet packet)
{
session.Send(Packet.FromProto(new GetGodWarRsp() { retcode = GetGodWarRsp.Retcode.Succ }, CmdId.GetGodWarRsp));
GetGodWarRsp Rsp = new() { retcode = GetGodWarRsp.Retcode.Succ };
session.Send(Packet.FromProto(Rsp, CmdId.GetGodWarRsp));
}
}
}