[#582] Widen synchronized block for packet queue.

This commit is contained in:
md_5 2013-09-26 09:20:52 +10:00
parent cbcd874d47
commit 79d04bec2e

View File

@ -89,13 +89,13 @@ public class BungeeServerInfo implements ServerInfo
Preconditions.checkNotNull( channel, "channel" );
Preconditions.checkNotNull( data, "data" );
synchronized ( packetQueue )
{
Server server = ( players.isEmpty() ) ? null : players.iterator().next().getServer();
if ( server != null )
{
server.sendData( channel, data );
} else
{
synchronized ( packetQueue )
{
packetQueue.add( new PacketFAPluginMessage( channel, data ) );
}