mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
Additional constructor for PlayerLoginEvent
This commit is contained in:
parent
f9058e5161
commit
0a9d59291f
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue