diff --git a/TShockAPI/DB/UserManager.cs b/TShockAPI/DB/UserManager.cs
index 18e95f03..d897ab18 100755
--- a/TShockAPI/DB/UserManager.cs
+++ b/TShockAPI/DB/UserManager.cs
@@ -409,6 +409,8 @@ namespace TShockAPI.DB
}
}
+ /// Creates a BCrypt hash for a user and stores it in this object.
+ /// string password - the plain text password to hash
public void CreateBCryptHash(string password) {
try {
this.Password = BCrypt.Net.BCrypt.HashPassword(password, TShock.Config.BCryptWorkFactor);