From 81766c7a1bfd3d9baea584d42786dfb02419fd89 Mon Sep 17 00:00:00 2001 From: chompDev <27521899+chompDev@users.noreply.github.com> Date: Tue, 24 Jun 2025 15:26:57 +0000 Subject: [PATCH] .NET Format Style Fixes --- .../SPTarkov.Server.Core/Controllers/MatchController.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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