diff --git a/Keeper/dllmain.cpp b/Keeper/dllmain.cpp index c00bb5a..c17ff11 100644 --- a/Keeper/dllmain.cpp +++ b/Keeper/dllmain.cpp @@ -324,8 +324,8 @@ static void EnableConsole() auto start = std::chrono::high_resolution_clock::now(); // Measure the time to renable console UEngine* Engine = nullptr; - for (int i = 0; i < 100; ++i) { // gives 10 seconds to find UE Engine - std::this_thread::sleep_for(std::chrono::milliseconds(100)); + for (int i = 0; i < 10; ++i) { // gives 10 seconds to find UE Engine + std::this_thread::sleep_for(std::chrono::milliseconds(1000)); Engine = UEngine::GetEngine(); if (Engine && Engine->ConsoleClass && Engine->GameViewport) break;