.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -23,8 +23,7 @@ public class PrestigeController(
/// </summary>
/// <param name="sessionId">Session/Player id</param>
/// <returns>Prestige</returns>
public Prestige GetPrestige(
string sessionId)
public Prestige GetPrestige(string sessionId)
{
return _databaseService.GetTemplates().Prestige;
}
@@ -59,9 +58,7 @@ public class PrestigeController(
/// </list>
/// </summary>
/// <returns></returns>
public async Task ObtainPrestige(
string sessionId,
ObtainPrestigeRequestList request)
public async Task ObtainPrestige(string sessionId, ObtainPrestigeRequestList request)
{
var profile = _profileHelper.GetFullProfile(sessionId);
if (profile is not null)
@@ -69,7 +66,7 @@ public class PrestigeController(
var pendingPrestige = new PendingPrestige
{
PrestigeLevel = profile.CharacterData.PmcData.Info.PrestigeLevel + 1,
Items = request
Items = request,
};
profile.SptData.PendingPrestige = pendingPrestige;