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

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