Stubbed out handlePostRaidPlayerScav()

This commit is contained in:
Dev 2024-07-06 09:21:00 +01:00
parent ad1d481069
commit cfb1cb3e39

View File

@ -427,6 +427,13 @@ export class MatchController
const map = this.databaseService.getLocation(locationName).base; const map = this.databaseService.getLocation(locationName).base;
const isDead = this.isPlayerDead(request.results); const isDead = this.isPlayerDead(request.results);
if (!isPmc)
{
this.handlePostRaidPlayerScav();
return;
}
// Update inventory // Update inventory
this.inRaidHelper.setInventory(sessionId, pmcProfile, postRaidProfile); this.inRaidHelper.setInventory(sessionId, pmcProfile, postRaidProfile);
@ -509,6 +516,11 @@ export class MatchController
} }
} }
protected handlePostRaidPlayerScav(): void
{
// TODO
}
/** /**
* Handle singleplayer/traderServices/itemDelivery * Handle singleplayer/traderServices/itemDelivery
*/ */