mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 00:14:48 +01:00
18 lines
459 B
C#
18 lines
459 B
C#
using nksrv.Net;
|
|
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Misc
|
|
{
|
|
[PacketPath("/system/sentry/getparams")]
|
|
public class GetSentryParams : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var r = new SentryDataResponse();
|
|
// TODO: figure out a way to disable sentry so that Shift Up devs wouldn't be annoyed by this server
|
|
|
|
await WriteDataAsync(r);
|
|
}
|
|
}
|
|
}
|