File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
bukkit/src/main/java/com/github/games647/fastlogin/bukkit
bungee/src/main/java/com/github/games647/fastlogin/bungee Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ public void onEnable() {
146146 }
147147
148148 private boolean initializeFloodgate () {
149- if (getServer ().getPluginManager ().getPlugin ("Floodgate " ) != null ) {
149+ if (getServer ().getPluginManager ().getPlugin ("floodgate " ) != null ) {
150150 floodgateService = new FloodgateService (FloodgateApi .getInstance (), core );
151151
152152 // Check Floodgate config values and return
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ public void onEnable() {
8686 return ;
8787 }
8888
89- if (isPluginInstalled ("Floodgate " )) {
89+ if (isPluginInstalled ("floodgate " )) {
9090 floodgateService = new FloodgateService (FloodgateApi .getInstance (), core );
9191 }
9292
Original file line number Diff line number Diff line change @@ -161,8 +161,8 @@ public void onLogin(LoginEvent loginEvent) {
161161
162162 private void setOfflineId (InitialHandler connection , String username ) {
163163 try {
164- final UUID oldPremiumId = connection .getUniqueId ();
165- final UUID offlineUUID = UUIDAdapter .generateOfflineId (username );
164+ UUID oldPremiumId = connection .getUniqueId ();
165+ UUID offlineUUID = UUIDAdapter .generateOfflineId (username );
166166
167167 // BungeeCord only allows setting the UUID in PreLogin events and before requesting online mode
168168 // However if online mode is requested, it will override previous values
You can’t perform that action at this time.
0 commit comments