From cfb1cb3e398339208cb133d37fb44905ceadfbc6 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 6 Jul 2024 09:21:00 +0100 Subject: [PATCH] Stubbed out `handlePostRaidPlayerScav()` --- project/src/controllers/MatchController.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/project/src/controllers/MatchController.ts b/project/src/controllers/MatchController.ts index 8e6ea31b..5ac8d033 100644 --- a/project/src/controllers/MatchController.ts +++ b/project/src/controllers/MatchController.ts @@ -427,6 +427,13 @@ export class MatchController const map = this.databaseService.getLocation(locationName).base; const isDead = this.isPlayerDead(request.results); + if (!isPmc) + { + this.handlePostRaidPlayerScav(); + + return; + } + // Update inventory this.inRaidHelper.setInventory(sessionId, pmcProfile, postRaidProfile); @@ -509,6 +516,11 @@ export class MatchController } } + protected handlePostRaidPlayerScav(): void + { + // TODO + } + /** * Handle singleplayer/traderServices/itemDelivery */