Unify Player::GetSteamXId returns, clarify doc, and fix checks

This commit is contained in:
Nicholas Hastings
2014-09-09 17:57:54 -07:00
parent 775a35c5ab
commit 96fbb7ecda
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -282,7 +282,7 @@ namespace SourceMod
*
* @param validated Check backend validation status.
*
* @return True on success or false if not available.
* @return Steam2 Id on success or NULL if not available.
*/
virtual const char *GetSteam2Id(bool validated = true) =0;
@@ -291,7 +291,7 @@ namespace SourceMod
*
* @param validated Check backend validation status.
*
* @return True on success or false if not available.
* @return Steam3 Id on success or NULL if not available.
*/
virtual const char *GetSteam3Id(bool validated = true) =0;
};