clean up code

This commit is contained in:
Mikhail
2024-07-05 14:08:05 -04:00
parent 5036097c9d
commit d08c293cd4
31 changed files with 105 additions and 337 deletions

View File

@@ -12,12 +12,11 @@ namespace nksrv.LobbyServer.Msgs.Antibot
{
protected override async Task HandleAsync()
{
var req = ReadData<ReqBattleReportData>();
// I don't really care about reimplementing the server side anticheat, so return
var req = await ReadData<ReqBattleReportData>();
var response = new ResBattleReportData();
// this is responsible for server side anticheat
WriteData(response);
}
}