From 0b9e61dcdc375711e22a5c649a006a5ca27a882e Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 11 Jul 2024 09:45:59 +0100 Subject: [PATCH] Added comments --- project/src/controllers/MatchController.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project/src/controllers/MatchController.ts b/project/src/controllers/MatchController.ts index adefc955..4ac60635 100644 --- a/project/src/controllers/MatchController.ts +++ b/project/src/controllers/MatchController.ts @@ -126,11 +126,13 @@ export class MatchController return botDifficulty; } + /** Handle client/match/local/start */ public startLocalRaid(sessionId: string, request: IStartLocalRaidRequestData): IStartLocalRaidResponseData { return this.locationLifecycleService.startLocalRaid(sessionId, request); } + /** Handle client/match/local/end */ public endLocalRaid(sessionId: string, request: IEndLocalRaidRequestData): void { return this.locationLifecycleService.endLocalRaid(sessionId, request);