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.
2 parents 47ee2cf + 586b357 commit d802193Copy full SHA for d802193
core/src/main/java/com/github/games647/fastlogin/core/shared/FloodgateManagement.java
@@ -73,6 +73,13 @@ public void run() {
73
74
// check if the Bedrock player is linked to a Java account
75
isLinked = floodgatePlayer.getLinkedPlayer() != null;
76
+
77
+ //this happens on Bukkit if it's connected to Bungee
78
+ //if that's the case, players will be logged in via plugin messages
79
+ if (core.getStorage() == null) {
80
+ return;
81
+ }
82
83
profile = core.getStorage().loadProfile(username);
84
AuthPlugin<P> authPlugin = core.getAuthPluginHook();
85
0 commit comments