Update MkpasswdCommand.java

This commit is contained in:
Zachery 2019-10-16 00:47:53 -05:00 committed by GitHub
parent de9d723416
commit 3ad2a810f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ class MkpasswdCommand implements CommandExecutor
if (algoritm.equalsIgnoreCase("PLAIN"))
{
// I mean c'mon...
sender.sendMessage("Bro really? it's literally your unencrypted password...");
sender.sendMessage("\u00A79Your Hash: \u00A7cIt's literally your unhashed password.");
return true;
}
else if (algoritm.equalsIgnoreCase("pbkdf2"))
@ -89,4 +89,4 @@ class MkpasswdCommand implements CommandExecutor
return true;
}
}
}