diff --git a/src/de/steamwar/bungeecore/listeners/SubserverProtocolFixer.java b/src/de/steamwar/bungeecore/listeners/SubserverProtocolFixer.java index d14a78fd..d54414a9 100644 --- a/src/de/steamwar/bungeecore/listeners/SubserverProtocolFixer.java +++ b/src/de/steamwar/bungeecore/listeners/SubserverProtocolFixer.java @@ -41,13 +41,12 @@ public class SubserverProtocolFixer extends BasicListener { field = InitialHandler.class.getDeclaredField("extraDataInHandshake"); field.setAccessible(true); } catch (Exception e) { - BungeeCord.getInstance().stop(); + // ignore } } @EventHandler public void loginEvent(LoginEvent e) { - System.out.println(e); InitialHandler initialHandler = ((InitialHandler) e.getConnection()); LoginResult.Property[] properties = initialHandler.getLoginProfile().getProperties(); try { @@ -57,7 +56,7 @@ public class SubserverProtocolFixer extends BasicListener { } field.set(initialHandler, extraData); } catch (Exception ex) { - BungeeCord.getInstance().stop(); + // ignore } } }