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