mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Basic IsUserInSource implementation for the main lobby.
This commit is contained in:
parent
51a5e3bc27
commit
1f79ca9231
2 changed files with 10 additions and 1 deletions
|
@ -462,6 +462,15 @@ CSteamID GetFriendFromSourceByIndex( CSteamID steamIDSource, int iFriend )
|
|||
bool IsUserInSource( CSteamID steamIDUser, CSteamID steamIDSource )
|
||||
{
|
||||
PRINT_DEBUG("Steam_Friends::IsUserInSource %llu %llu\n", steamIDUser.ConvertToUint64(), steamIDSource.ConvertToUint64());
|
||||
if (steamIDUser == settings->get_local_steam_id()) {
|
||||
if (settings->get_lobby() == steamIDSource) {
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
Friend *f = find_friend(steamIDUser);
|
||||
if (!f) return false;
|
||||
if (f->lobby_id() == steamIDSource.ConvertToUint64()) return true;
|
||||
}
|
||||
//TODO
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue