From 62394b9ffe9e51718eceb9e115b648bc112e9163 Mon Sep 17 00:00:00 2001 From: Alex Corn Date: Thu, 1 Nov 2018 01:20:19 -0400 Subject: [PATCH] Added ability to change friends list privacy --- components/profile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/profile.js b/components/profile.js index e865202..441e25c 100644 --- a/components/profile.js +++ b/components/profile.js @@ -203,6 +203,10 @@ SteamCommunity.prototype.profileSettings = function(settings, callback) { case 'playtime': privacy.PrivacyPlaytime = settings[i] ? SteamCommunity.PrivacyState.Private : SteamCommunity.PrivacyState.Public; break; + + case 'friendsList': + privacy.PrivacyFriendsList = settings[i]; + break; } }