diff --git a/Project Reboot 3.0/bots.h b/Project Reboot 3.0/bots.h index 506a4df..e6528ed 100644 --- a/Project Reboot 3.0/bots.h +++ b/Project Reboot 3.0/bots.h @@ -294,7 +294,14 @@ public: Controller->Possess(Pawn); } - auto BotNewName = GetRandomName(); + FString BotNewName = L""; + if (Globals::bUseGenericRandomBotNames) { + BotNewName = GetRandomBotNameGeneric(); + } + else { + BotNewName = GetRandomName(); + } + LOG_INFO(LogBots, "BotNewName: {}", BotNewName.ToString()); SetName(BotNewName); @@ -456,4 +463,4 @@ namespace Bots namespace Bosses { -} \ No newline at end of file +}