Disable tablist hider due to issues in 1.9

This commit is contained in:
Gabriele C 2016-03-20 13:51:23 +01:00
parent 3ef96cc233
commit 2f850eed08

View File

@ -29,11 +29,13 @@ public class AuthMeTablistPacketAdapter extends PacketAdapter {
}
}
// TODO: fix this in 1.9
public void register() {
ProtocolLibrary.getProtocolManager().addPacketListener(this);
ConsoleLogger.showError("The hideTablistBeforeLogin feature is temporarily disabled due to issues with 1.9 clients.");
//ProtocolLibrary.getProtocolManager().addPacketListener(this);
}
public void unregister() {
ProtocolLibrary.getProtocolManager().removePacketListener(this);
//ProtocolLibrary.getProtocolManager().removePacketListener(this);
}
}