From cbca79f1a431c23b1cf4ed405941f6984cb1db36 Mon Sep 17 00:00:00 2001 From: vanhec_a Date: Tue, 8 Sep 2015 11:43:32 +0200 Subject: [PATCH] Fix bad async call --- .../fr/xephi/authme/events/PasswordEncryptionEvent.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/fr/xephi/authme/events/PasswordEncryptionEvent.java b/src/main/java/fr/xephi/authme/events/PasswordEncryptionEvent.java index 4e5a0f5cd..2f055bfda 100644 --- a/src/main/java/fr/xephi/authme/events/PasswordEncryptionEvent.java +++ b/src/main/java/fr/xephi/authme/events/PasswordEncryptionEvent.java @@ -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 *

- * + * * @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; }