diff --git a/Facepunch.Steamworks/SteamFriends.cs b/Facepunch.Steamworks/SteamFriends.cs index 7cc416c..9182f5d 100644 --- a/Facepunch.Steamworks/SteamFriends.cs +++ b/Facepunch.Steamworks/SteamFriends.cs @@ -127,9 +127,9 @@ namespace Steamworks public static IEnumerable GetPlayedWith() { - for ( int i = 0; i < Internal.GetFriendCount( (int)FriendFlags.Blocked ); i++ ) + for ( int i = 0; i < Internal.GetCoplayFriendCount(); i++ ) { - yield return new Friend( Internal.GetFriendByIndex( i, 0xFFFF ) ); + yield return new Friend( Internal.GetCoplayFriend( i ) ); } }