Fix bad async call

This commit is contained in:
vanhec_a 2015-09-08 11:43:32 +02:00
parent 1e9d7f879a
commit cbca79f1a4

View File

@ -10,9 +10,9 @@ import fr.xephi.authme.security.crypts.EncryptionMethod;
* This event is called when we need to compare or get an hash password, for set
* a custom EncryptionMethod
* </p>
*
*
* @see fr.xephi.authme.security.crypts.EncryptionMethod
*
*
* @author Xephi59
*/
public class PasswordEncryptionEvent extends Event {
@ -22,7 +22,7 @@ public class PasswordEncryptionEvent extends Event {
private String playerName = "";
public PasswordEncryptionEvent(EncryptionMethod method, String playerName) {
super(true);
super(false);
this.method = method;
this.playerName = playerName;
}