remove generic bot names per request

This commit is contained in:
Jagger Tavarez
2024-03-22 01:32:40 +00:00
parent 7e8b95e80c
commit 1cb5a17247
3 changed files with 1 additions and 62 deletions

View File

@@ -294,13 +294,7 @@ public:
Controller->Possess(Pawn);
}
FString BotNewName = L"";
if (Globals::bUseGenericRandomBotNames) {
BotNewName = GetRandomBotNameGeneric();
}
else {
BotNewName = GetRandomName();
}
FString BotNewName = GetRandomName();
LOG_INFO(LogBots, "BotNewName: {}", BotNewName.ToString());
SetName(BotNewName);