Fixed choosing 'wipe' from launcher persisting your prestige level
This commit is contained in:
@@ -193,9 +193,12 @@ public class LauncherController(
|
||||
|
||||
if (!sessionId.IsEmpty())
|
||||
{
|
||||
var profileInfo = saveServer.GetProfile(sessionId).ProfileInfo;
|
||||
profileInfo!.Edition = info.Edition;
|
||||
profileInfo.IsWiped = true;
|
||||
var profile = saveServer.GetProfile(sessionId);
|
||||
profile.ProfileInfo.Edition = info.Edition;
|
||||
profile.ProfileInfo.IsWiped = true;
|
||||
|
||||
// Wipe out any prestiges
|
||||
profile.CharacterData.PmcData.Prestige = [];
|
||||
}
|
||||
|
||||
return sessionId;
|
||||
|
||||
Reference in New Issue
Block a user