mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-04-05 09:09:05 +03:00
Fixed GetPlayedWith
This commit is contained in:
parent
8d5f140e09
commit
cf0e3417de
@ -127,9 +127,9 @@ namespace Steamworks
|
||||
|
||||
public static IEnumerable<Friend> 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 ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user