We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01c9b55 commit baede33Copy full SHA for baede33
bungee/src/main/java/com/github/games647/fastlogin/bungee/listener/ConnectListener.java
@@ -217,9 +217,11 @@ private boolean isBedrockPlayer(UUID correctedUUID) {
217
// Floodgate will set a correct UUID at the beginning of the PreLoginEvent
218
// and will cancel the online mode login for those players
219
// Therefore we just ignore those
220
- if (floodgateHook == null) {
+ if (floodgateHook == null || correctedUUID == null) {
221
+ // Also ignore if not set by floodgate or any other plugin
222
return false;
223
}
224
+
225
return this.floodgateHook.isBedrockPlayer(correctedUUID);
226
227
0 commit comments