diff --git a/Libraries/Core/Generators/BotGenerator.cs b/Libraries/Core/Generators/BotGenerator.cs index a2458f6c..c8133891 100644 --- a/Libraries/Core/Generators/BotGenerator.cs +++ b/Libraries/Core/Generators/BotGenerator.cs @@ -199,7 +199,11 @@ public class BotGenerator( botRoleLowercase, _botConfig.BotRolesThatMustHaveUniqueName ); - bot.Info.LowerNickname = bot.Info.Nickname.ToLower(); + + // Only Pmcs should have a lower nickname + bot.Info.LowerNickname = botGenerationDetails.IsPmc.GetValueOrDefault(false) + ? bot.Info.Nickname.ToLower() + : string.Empty; // Only run when generating a 'fake' playerscav, not actual player scav if (!botGenerationDetails.IsPlayerScav.GetValueOrDefault(false) && ShouldSimulatePlayerScav(botRoleLowercase))