mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
21 lines
483 B
C#
21 lines
483 B
C#
using EpinelPS.Utils;
|
|
|
|
namespace EpinelPS.LobbyServer.Misc
|
|
{
|
|
[PacketPath("/getserverinfo")]
|
|
public class GetServerInfo : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
ResGetServerInfo r = new()
|
|
{
|
|
// todo: reimplement this as well
|
|
MatchUrl = "https://global-match.nikke-kr.com",
|
|
WorldId = 84
|
|
};
|
|
|
|
await WriteDataAsync(r);
|
|
}
|
|
}
|
|
}
|