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

18 lines
388 B
C#

using BLHX.Server.Common.Proto;
using BLHX.Server.Common.Proto.p18;
namespace BLHX.Server.Game.Handlers
{
internal static class P18
{
[PacketHandler(Command.Cs18001)]
static void SeasonInfoHandler(Connection connection, Packet packet)
{
connection.Send(new Sc18002()
{
Rank = 1
});
}
}
}