Revert "Reenable throttle since we only support 1.7+"

This reverts commit f23691df23.
This commit is contained in:
md_5 2014-06-13 16:25:53 +10:00
parent 31bd836203
commit b167a45690

View File

@ -36,8 +36,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 );