mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-02-04 22:11:55 +01:00
Fix bad async call
This commit is contained in:
parent
1e9d7f879a
commit
cbca79f1a4
@ -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
|
* This event is called when we need to compare or get an hash password, for set
|
||||||
* a custom EncryptionMethod
|
* a custom EncryptionMethod
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @see fr.xephi.authme.security.crypts.EncryptionMethod
|
* @see fr.xephi.authme.security.crypts.EncryptionMethod
|
||||||
*
|
*
|
||||||
* @author Xephi59
|
* @author Xephi59
|
||||||
*/
|
*/
|
||||||
public class PasswordEncryptionEvent extends Event {
|
public class PasswordEncryptionEvent extends Event {
|
||||||
@ -22,7 +22,7 @@ public class PasswordEncryptionEvent extends Event {
|
|||||||
private String playerName = "";
|
private String playerName = "";
|
||||||
|
|
||||||
public PasswordEncryptionEvent(EncryptionMethod method, String playerName) {
|
public PasswordEncryptionEvent(EncryptionMethod method, String playerName) {
|
||||||
super(true);
|
super(false);
|
||||||
this.method = method;
|
this.method = method;
|
||||||
this.playerName = playerName;
|
this.playerName = playerName;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user