Merge pull request #45 from Xephi/master

Fix bad async call
This commit is contained in:
DNx 2015-09-19 14:13:42 +07:00
commit 0f631d34d3

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