From cf0e3417de6b1444e501da907526e40c732ff8df Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Wed, 1 May 2019 13:22:50 +0100 Subject: [PATCH] Fixed GetPlayedWith --- Facepunch.Steamworks/SteamFriends.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) ); } }