Add PRE_SERVER_JOIN to DisconnectEvent#LoginStatus (#346)

This commit is contained in:
Jacob Allen
2020-08-04 16:30:17 -04:00
committed by GitHub
parent 87bff1a123
commit 76173e4145
2 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ package com.velocitypowered.api.event.connection;
import static com.velocitypowered.api.event.connection.DisconnectEvent.LoginStatus.CANCELLED_BY_PROXY;
import static com.velocitypowered.api.event.connection.DisconnectEvent.LoginStatus.CONFLICTING_LOGIN;
import static com.velocitypowered.api.event.connection.DisconnectEvent.LoginStatus.PRE_SERVER_JOIN;
import static com.velocitypowered.api.event.connection.DisconnectEvent.LoginStatus.SUCCESSFUL_LOGIN;
import com.google.common.base.Preconditions;
@@ -59,6 +60,7 @@ public final class DisconnectEvent {
CONFLICTING_LOGIN,
CANCELLED_BY_USER,
CANCELLED_BY_PROXY,
CANCELLED_BY_USER_BEFORE_COMPLETE
CANCELLED_BY_USER_BEFORE_COMPLETE,
PRE_SERVER_JOIN
}
}