mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 01:55:47 +01:00
parent
6555bcda74
commit
369b076cad
@ -112,7 +112,10 @@ public class JoinListener implements Listener {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// The connection has already closed, that was a quick leave
|
// The connection has already closed, that was a quick leave
|
||||||
if (!channel.isOpen()) return;
|
// Channel may be null if a plugin is manually calling the event for a non-player...
|
||||||
|
if (channel == null || !channel.isOpen()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
UserConnection user = getUserConnection(channel);
|
UserConnection user = getUserConnection(channel);
|
||||||
if (user == null) {
|
if (user == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user