From ea18ca445551e596e6f10c0b5b84288725409e83 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Mon, 13 Apr 2015 18:50:40 -0600 Subject: [PATCH] Add slight warning about bcrypt to the config file --- TShockAPI/ConfigFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/ConfigFile.cs b/TShockAPI/ConfigFile.cs index 3eee17c6..8a205ac2 100755 --- a/TShockAPI/ConfigFile.cs +++ b/TShockAPI/ConfigFile.cs @@ -398,7 +398,7 @@ namespace TShockAPI [Description("Determines if the server should save the world if the last player exits.")] public bool SaveWorldOnLastPlayerExit = true; - [Description("Determines the BCrypt work factor to use. If increased, all passwords will be upgraded to new work-factor on verify. Range: 5-31.")] + [Description("Determines the BCrypt work factor to use. If increased, all passwords will be upgraded to new work-factor on verify. The number computational rounds is 2^n. Increase with caution. Range: 5-31.")] public int BCryptWorkFactor = 7; [Description("The minimum password length for new user accounts. Minimum value is 4.")]