From 78960f6bbd835b0f8aff52685a9c8d73a6be46a9 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 17 Jan 2023 00:08:15 +0100 Subject: [PATCH] Finish initial implementation of basic bots --- r5dev/vstdlib/callback.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index 3d92c384..ba9ee0c2 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -1248,7 +1248,12 @@ void CC_CreateFakePlayer_f(const CCommand& args) DevMsg(eDLL_T::SERVER, "usage: sv_addbot name teamid\n"); return; } - edict_t nHandle = IVEngineServer__CreateFakeClient(nullptr, args.Arg(1), std::stoi(args.Arg(2))); + + g_pEngineServer->LockNetworkStringTables(true); + + edict_t nHandle = g_pEngineServer->CreateFakeClient(args.Arg(1), std::stoi(args.Arg(2))); g_pServerGameClients->ClientFullyConnect(nHandle, false); + + g_pEngineServer->LockNetworkStringTables(false); #endif // !CLIENT_DLL } \ No newline at end of file