Merge pull request #528 from Smart123s/patch-1

Actually assign the queried version to a variable
This commit is contained in:
games647
2021-05-13 17:21:47 +02:00
committed by GitHub

View File

@ -92,7 +92,7 @@ public class FastLoginBungee extends Plugin implements PlatformPlugin<CommandSen
String floodgateVersion = "0";
Plugin floodgatePlugin = pluginManager.getPlugin("floodgate");
if (floodgatePlugin != null) {
floodgatePlugin.getDescription().getVersion();
floodgateVersion = floodgatePlugin.getDescription().getVersion();
}
ConnectListener connectListener = new ConnectListener(this, core.getRateLimiter(), floodgateVersion);