Stop PMCs being genered as usec with side of bear

This commit is contained in:
Dev 2024-01-27 16:19:26 +00:00
parent 8c348844ad
commit b3f2e3e2a5

View File

@ -280,9 +280,9 @@ export class BotController
{
botGenerationDetails.isPmc = true;
botGenerationDetails.role = this.botHelper.getRandomizedPmcRole();
botGenerationDetails.side = this.botHelper.getPmcSideByRole(requestedBot.Role);
botGenerationDetails.side = this.botHelper.getPmcSideByRole(botGenerationDetails.role);
botGenerationDetails.botDifficulty = this.getPMCDifficulty(requestedBot.Difficulty);
botGenerationDetails.botCountToGenerate = this.botConfig.presetBatch[requestedBot.Role];
botGenerationDetails.botCountToGenerate = this.botConfig.presetBatch[botGenerationDetails.role];
}
}