mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
Init enter game
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Player;
|
||||
|
||||
public class PacketGetPlayerCardRsp : BasePacket
|
||||
{
|
||||
public PacketGetPlayerCardRsp() : base(CmdIds.GetPlayerCardRsp)
|
||||
{
|
||||
var proto = new GetPlayerCardRsp
|
||||
{
|
||||
Retcode = GetPlayerCardRsp.Types.Retcode.Fail, // set to fail to prevent null reference error pop up
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user