mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
19 lines
512 B
C#
19 lines
512 B
C#
using BLHX.Server.Common.Proto;
|
|
using BLHX.Server.Common.Proto.p34;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
internal static class P34
|
|
{
|
|
[PacketHandler(Command.Cs34001)]
|
|
static void GetMetaPTHandler(Connection connection, Packet packet)
|
|
{
|
|
var req = packet.Decode<Cs34001>();
|
|
connection.Send(new Sc34002()
|
|
{
|
|
MetaShipLists = req.GroupIds.Select(x => new MetaShipInfo() { GroupId = x }).ToList()
|
|
});
|
|
}
|
|
}
|
|
}
|