diff --git a/Facepunch.Steamworks/SteamMatchmaking.cs b/Facepunch.Steamworks/SteamMatchmaking.cs index 794194a..5fbe6ea 100644 --- a/Facepunch.Steamworks/SteamMatchmaking.cs +++ b/Facepunch.Steamworks/SteamMatchmaking.cs @@ -161,6 +161,7 @@ public static IEnumerable GetFavoriteServers() if ( Internal.GetFavoriteGame( i, ref appid, ref ip, ref cport, ref qport, ref flags, ref timeplayed ) ) { + if ( (flags & ServerInfo.k_unFavoriteFlagFavorite) == 0 ) continue; yield return new ServerInfo( ip, cport, qport, timeplayed ); } }