mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
15 lines
461 B
C#
15 lines
461 B
C#
using KianaBH.GameServer.Server.Packet.Send.Battle;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Recv.Battle;
|
|
|
|
[Opcode(CmdIds.GetBuffEffectReq)]
|
|
public class HandlerGetBuffEffectReq : Handler
|
|
{
|
|
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
|
|
{
|
|
var req = GetBuffEffectReq.Parser.ParseFrom(data);
|
|
await connection.SendPacket(new PacketGetBuffEffectRsp(req.EffectIdList));
|
|
}
|
|
}
|