.NET Format Style Fixes

This commit is contained in:
chompDev
2025-06-20 07:48:43 +00:00
committed by Format Bot
parent 445243aad5
commit ab22346870
2 changed files with 3 additions and 3 deletions
@@ -10,7 +10,7 @@ namespace SPTarkov.Server.Core.Helpers;
public class RepeatableQuestHelper(
ISptLogger<RepeatableQuestHelper> _logger,
ConfigServer _configServer
)
)
{
protected QuestConfig _questConfig = _configServer.GetConfig<QuestConfig>();
@@ -44,7 +44,7 @@ public class RepeatableQuestHelper(
{
PlayerGroup.Pmc => templates.Pmc,
PlayerGroup.Scav => templates.Scav,
_ => throw new ArgumentOutOfRangeException(nameof(playerGroup), playerGroup, null)
_ => throw new ArgumentOutOfRangeException(nameof(playerGroup), playerGroup, null),
};
}
}
@@ -6,5 +6,5 @@ namespace SPTarkov.Server.Core.Models.Enums;
public enum PlayerGroup
{
Pmc,
Scav
Scav,
}