mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
chore: move stigmata to correct folder
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using KianaBH.GameServer.Game.Player;
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Item;
|
||||
|
||||
public class PacketRefineStigmataRuneRsp : BasePacket
|
||||
{
|
||||
public PacketRefineStigmataRuneRsp(PlayerInstance player,int uniqueId, StigmataRefineTimesType type) : base(CmdIds.RefineStigmataRuneRsp)
|
||||
{
|
||||
var proto = new RefineStigmataRuneRsp
|
||||
{
|
||||
RuneGroupList = { player.InventoryManager!.Data!.StigmataItems.Find(x => x.UniqueId == uniqueId)!.ToWaitSelectRuneGroup() },
|
||||
TimesType = type
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Item;
|
||||
|
||||
public class PacketSelectNewStigmataRuneRsp : BasePacket
|
||||
{
|
||||
public PacketSelectNewStigmataRuneRsp(uint selectUniqueId, bool isSelect) : base(CmdIds.SelectNewStigmataRuneRsp)
|
||||
{
|
||||
var proto = new SelectNewStigmataRuneRsp
|
||||
{
|
||||
SelectUniqueId = selectUniqueId,
|
||||
IsSelect = isSelect
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user