Do not reject friend invites, group invites, and trades, by default, closes #33

This commit is contained in:
JustArchi
2015-12-16 20:09:31 +01:00
parent 6523b30f10
commit 5e22c832a2
2 changed files with 3 additions and 14 deletions

View File

@@ -597,13 +597,11 @@ namespace ArchiSteamFarm {
SteamID steamID = friend.SteamID;
switch (steamID.AccountType) {
case EAccountType.Clan:
ArchiHandler.DeclineClanInvite(steamID);
// TODO: Accept clan invites from master?
break;
default:
if (steamID == SteamMasterID) {
SteamFriends.AddFriend(steamID);
} else {
SteamFriends.RemoveFriend(steamID);
}
break;
}