We cannot throttle like this if we want 1.7 compat, lets disable it until we work on a more compatible one.

This commit is contained in:
md_5 2013-10-10 07:25:20 +11:00
parent 4685099808
commit 220a95aece

View File

@ -30,8 +30,9 @@ public class PipelineUtils
{
if ( BungeeCord.getInstance().getConnectionThrottle().throttle( ( (InetSocketAddress) ch.remoteAddress() ).getAddress() ) )
{
ch.close();
return;
// TODO: Better throttle - we can't throttle this way if we want to maintain 1.7 compat!
// ch.close();
// return;
}
BASE.initChannel( ch );