mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-12 21:50:43 -05:00
Fixed generateUniqueBotNickname()
failing when no data is passed into its optional parameter
This commit is contained in:
parent
43025ed8e1
commit
e7f5db9f0a
@ -61,7 +61,7 @@ export class BotNameService {
|
|||||||
const isPlayerScav = botGenerationDetails.isPlayerScav;
|
const isPlayerScav = botGenerationDetails.isPlayerScav;
|
||||||
const simulateScavName = isPlayerScav ? false : this.shouldSimulatePlayerScavName(botRole);
|
const simulateScavName = isPlayerScav ? false : this.shouldSimulatePlayerScavName(botRole);
|
||||||
const showTypeInNickname = this.botConfig.showTypeInNickname && !isPlayerScav;
|
const showTypeInNickname = this.botConfig.showTypeInNickname && !isPlayerScav;
|
||||||
const roleShouldBeUnique = uniqueRoles.includes(botRole.toLowerCase());
|
const roleShouldBeUnique = uniqueRoles?.includes(botRole.toLowerCase());
|
||||||
|
|
||||||
let isUnique = true;
|
let isUnique = true;
|
||||||
let attempts = 0;
|
let attempts = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user