| 2352 | } |
| 2353 | |
| 2354 | bool CPlayer::IsAuthStringValidated() |
| 2355 | { |
| 2356 | #if SOURCE_ENGINE >= SE_ORANGEBOX |
| 2357 | if (!IsFakeClient() && g_Players.m_bAuthstringValidation && !g_HL2.IsLANServer()) |
| 2358 | { |
| 2359 | return engine->IsClientFullyAuthenticated(m_pEdict); |
| 2360 | } |
| 2361 | #endif |
| 2362 | |
| 2363 | return true; |
| 2364 | } |
| 2365 | |
| 2366 | IPlayerInfo *CPlayer::GetPlayerInfo() |
| 2367 | { |
no test coverage detected