From 2decc21346afd6a59c46fefa9dc18ee8c6a7d783 Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 27 Dec 2024 19:50:03 +0000 Subject: [PATCH] Fixed profile creation not using supplied name --- project/src/controllers/ProfileController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/ProfileController.ts b/project/src/controllers/ProfileController.ts index a4a1630b..ee659c46 100644 --- a/project/src/controllers/ProfileController.ts +++ b/project/src/controllers/ProfileController.ts @@ -139,7 +139,7 @@ export class ProfileController { pmcData.aid = account.aid; pmcData.savage = account.scavId; pmcData.sessionId = sessionID; - pmcData.Info.Nickname = account.username; + pmcData.Info.Nickname = info.nickname; pmcData.Info.LowerNickname = account.username.toLowerCase(); pmcData.Info.RegistrationDate = this.timeUtil.getTimestamp(); pmcData.Info.Voice = this.databaseService.getCustomization()[info.voiceId]._name;