Additional constructor for PlayerLoginEvent

This commit is contained in:
Dinnerbone 2010-12-28 22:54:39 +00:00
parent f9058e5161
commit 0a9d59291f

View File

@ -10,6 +10,12 @@ public class PlayerLoginEvent extends PlayerEvent {
private Result result;
private String message;
public PlayerLoginEvent(final Type type, final Player player) {
super(type, player);
this.result = Result.ALLOWED;
this.message = "";
}
public PlayerLoginEvent(final Type type, final Player player, final Result result, final String message) {
super(type, player);
this.result = result;