Disable the tablist hider due to bugs! (Invisible player, missing data resend after login...)

This commit is contained in:
Gabriele C 2016-03-01 22:19:33 +01:00
parent 86042070e9
commit 8bd9569c14

View File

@ -30,10 +30,15 @@ public class AuthMeTablistPacketAdapter extends PacketAdapter {
}
public void register() {
ProtocolLibrary.getProtocolManager().addPacketListener(this);
// TODO:
// FIXME:
// This listener hides every player not only from the tablist... From everything! (Invisible players issue)
// WE NEED ALSO TO RESEND THE DATA AFTER THE PLAYER LOGIN
ConsoleLogger.info("The HideTablistBeforeLogin feature is currently unavariable due to stability issues!");
//ProtocolLibrary.getProtocolManager().addPacketListener(this);
}
public void unregister() {
ProtocolLibrary.getProtocolManager().removePacketListener(this);
//ProtocolLibrary.getProtocolManager().removePacketListener(this);
}
}