mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-15 14:24:34 +01:00
yae openworld but dialogs aren't triggered
This commit is contained in:
15
GameServer/Handlers/One/ReportClientDataVersionReqHandler.cs
Normal file
15
GameServer/Handlers/One/ReportClientDataVersionReqHandler.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Common.Resources.Proto;
|
||||
|
||||
namespace PemukulPaku.GameServer.Handlers.One
|
||||
{
|
||||
[PacketCmdId(CmdId.ReportClientDataVersionReq)]
|
||||
internal class ReportClientDataVersionReqHandler : IPacketHandler
|
||||
{
|
||||
public void Handle(Session session, Packet packet)
|
||||
{
|
||||
ReportClientDataVersionReq Data = packet.GetDecodedBody<ReportClientDataVersionReq>();
|
||||
|
||||
session.Send(Packet.FromProto(new ReportClientDataVersionRsp() { ServerVersion = Data.Version }, CmdId.ReportClientDataVersionRsp));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user