1
0
mirror of https://github.com/GeyserMC/Floodgate.git synced 2025-12-19 14:59:20 +00:00

Warn about newer Bungee builds breaking Floodgate 1.0

This commit is contained in:
Camotoy
2021-05-30 09:52:54 -04:00
parent a5e6edde5c
commit 6eb1b68451

View File

@@ -55,6 +55,12 @@ public class BungeePlugin extends Plugin implements Listener {
CommandUtil commandUtil = new CommandUtil();
getProxy().getPluginManager().registerCommand(this, new LinkAccountCommand(playerLink, commandUtil));
getProxy().getPluginManager().registerCommand(this, new UnlinkAccountCommand(playerLink, commandUtil));
getLogger().warning("Recent BungeeCord changes break Floodgate 1.0!");
getLogger().warning("If you use a Waterfall build after 419, or a BungeeCord build after 1567, Floodgate will not work!");
getLogger().warning("One solution is to update to Floodgate 2.0, which will become the main version of Floodgate for 1.17: https://github.com/GeyserMC/Floodgate/wiki/Floodgate-2.0");
getLogger().warning("The other solution is to downgrade your BungeeCord/Waterfall installation:");
getLogger().warning("https://ci.md-5.net/job/BungeeCord/1567/ or https://papermc.io/api/v2/projects/waterfall/versions/1.16/builds/419/downloads/waterfall-1.16-419.jar");
}
@Override