diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-16 00:04:44 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-16 00:04:44 +0300 |
commit | c148e62ea62b06f5b23c958ce5cd68c8e3714db6 (patch) | |
tree | 47fcb9b95b27f43e61f65d44540a9db9e1f85e90 /protocols/Steam/src/main.cpp | |
parent | 8b123abaabfafc7785cf08c68fefae5e0b528b15 (diff) |
minus GetFriendListRequest HTTP request
Diffstat (limited to 'protocols/Steam/src/main.cpp')
-rw-r--r-- | protocols/Steam/src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Steam/src/main.cpp b/protocols/Steam/src/main.cpp index efb35cb945..0ee4bae20e 100644 --- a/protocols/Steam/src/main.cpp +++ b/protocols/Steam/src/main.cpp @@ -140,6 +140,7 @@ void CMPlugin::InitSteamServices() // message handlers
messageHandlers[EMsg::ClientLoggedOff] = ServiceResponseHandler(&CSteamProto::OnClientLogoff);
messageHandlers[EMsg::ClientLogOnResponse] = ServiceResponseHandler(&CSteamProto::OnClientLogon);
+ messageHandlers[EMsg::ClientFriendsList] = ServiceResponseHandler(&CSteamProto::OnGotFriendList);
// services from steammessages_auth.steamclient.proto
services["Authentication"] = &authentication__descriptor;
|