mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
18 lines
388 B
C#
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
|
|
});
|
|
}
|
|
}
|
|
}
|