diff --git a/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs b/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs index 6ae8d62f..db615725 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs @@ -100,8 +100,11 @@ public class MatchController( request.IsNightRaid = _weatherHelper.IsNightTime(request.TimeVariant, request.Location); // Store request data for access during bot generation - ProfileActivityRaidData raidData = _profileActivityService.GetProfileActivityRaidData(sessionId); - if (raidData != null) raidData.RaidConfiguration = request; + ProfileActivityRaidData raidData = _profileActivityService.GetProfileActivityRaidData( + sessionId + ); + if (raidData != null) + raidData.RaidConfiguration = request; // TODO: add code to strip PMC of equipment now they've started the raid