Files
BLHX.Server/BLHX.Server.Game/Handlers/P34.cs
2024-02-20 23:47:02 +07:00

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()
});
}
}
}