diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index caba5766..d2a2cd0d 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -375,7 +375,7 @@ namespace TShockAPI if (args.Parameters.Count == 2) { var user = new User(); - user.Name = args.Parameters[0]; + user.Name = args.Parameters[0].ToLower(); user.Password = args.Parameters[1]; user.Group = "default"; // FIXME -- we should get this from the DB.