mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
enter part2 world
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Pjms;
|
||||
|
||||
public class PacketPjmsSetCurAvatarRsp : BasePacket
|
||||
{
|
||||
public PacketPjmsSetCurAvatarRsp(uint ChapterId, uint CurAvatarId, bool IsElfMode) : base(CmdIds.PjmsSetCurAvatarRsp)
|
||||
{
|
||||
var proto = new PjmsSetCurAvatarRsp
|
||||
{
|
||||
ChapterId = ChapterId,
|
||||
CurAvatarId = CurAvatarId,
|
||||
IsElfMode = IsElfMode
|
||||
};
|
||||
// TODO: Create a part2 table to save changes
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user