mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-16 23:04:39 +01:00
feat: add equip weapon & stigmata
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using KianaBH.GameServer.Game.Player;
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
@@ -5,12 +6,12 @@ namespace KianaBH.GameServer.Server.Packet.Send.Avatar;
|
||||
|
||||
public class PacketDressEquipmentRsp : BasePacket
|
||||
{
|
||||
public PacketDressEquipmentRsp() : base(CmdIds.DressEquipmentRsp)
|
||||
public PacketDressEquipmentRsp(EquipmentSlot slot, uint uniqueId) : base(CmdIds.DressEquipmentRsp)
|
||||
{
|
||||
// TODO: Implement
|
||||
var proto = new DressEquipmentRsp
|
||||
{
|
||||
|
||||
UniqueId = uniqueId,
|
||||
Slot = slot
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
|
||||
Reference in New Issue
Block a user