| 112 | |
| 113 | #if SOURCE_ENGINE != SE_DARKMESSIAH |
| 114 | void GameHooks::OnQueryCvarValueFinished(QueryCvarCookie_t cookie, edict_t *pPlayer, EQueryCvarValueStatus result, |
| 115 | const char *cvarName, const char *cvarValue){ |
| 116 | int client = IndexOfEdict(pPlayer); |
| 117 | |
| 118 | # if SOURCE_ENGINE == SE_CSGO || SOURCE_ENGINE == SE_BLADE || SOURCE_ENGINE == SE_MCV |
| 119 | if (g_Players.HandleConVarQuery(cookie, client, result, cvarName, cvarValue)) |
| 120 | return; |
| 121 | # endif |
| 122 | g_ConVarManager.OnClientQueryFinished(cookie, client, result, cvarName, cvarValue); |
| 123 | } |
| 124 | #endif |
| 125 | |
| 126 | ke::RefPtr<CommandHook> |
nothing calls this directly
no test coverage detected