From 67a2fe3751cffd7fc88785a5b03606544977c598 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Tue, 8 Oct 2013 11:27:26 -0400 Subject: [PATCH] Speculative fix for bot issues with SteamAuthstringValidation (r=psychonic). --- core/PlayerManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/PlayerManager.cpp b/core/PlayerManager.cpp index 24e5c498..f4250586 100644 --- a/core/PlayerManager.cpp +++ b/core/PlayerManager.cpp @@ -2019,7 +2019,7 @@ bool CPlayer::IsAuthorized() bool CPlayer::IsAuthStringValidated() { #if SOURCE_ENGINE >= SE_ORANGEBOX - if (g_Players.m_bAuthstringValidation && !g_HL2.IsLANServer()) + if (!IsFakeClient() && g_Players.m_bAuthstringValidation && !g_HL2.IsLANServer()) { #if SOURCE_ENGINE == SE_DOTA return engine->IsClientFullyAuthenticated(m_iIndex);