mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
feat: add affix stigmata roll
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
using KianaBH.GameServer.Game.Player;
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Test;
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Item;
|
||||
|
||||
public class PacketRefineStigmataRuneRsp : BasePacket
|
||||
{
|
||||
public PacketRefineStigmataRuneRsp() : base(CmdIds.RefineStigmataRuneRsp)
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user