aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/friends.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/friends.rs b/src/friends.rs
index 5ac49f8..66ab182 100644
--- a/src/friends.rs
+++ b/src/friends.rs
@@ -91,9 +91,9 @@ impl <Manager> Friends<Manager> {
}
}
- pub fn request_user_information(&self, user: SteamId, name_only: bool) {
+ pub fn request_user_information(&self, user: SteamId, name_only: bool) -> bool {
unsafe {
- sys::SteamAPI_ISteamFriends_RequestUserInformation(self.friends, user.0, name_only);
+ sys::SteamAPI_ISteamFriends_RequestUserInformation(self.friends, user.0, name_only)
}
}