Fix issue #262 and put all scoreboard bugs to bed

This commit is contained in:
md_5 2013-04-14 09:33:36 +10:00
parent a9ad4889f7
commit 5620c4679d

View File

@ -170,6 +170,8 @@ public class DownstreamBridge extends PacketHandler
t.setSuffix( team.suffix ); t.setSuffix( team.suffix );
t.setFriendlyMode( team.friendlyFire ); t.setFriendlyMode( team.friendlyFire );
} }
if ( team.players != null )
{
for ( String s : team.players ) for ( String s : team.players )
{ {
if ( team.mode == 0 || team.mode == 3 ) if ( team.mode == 0 || team.mode == 3 )
@ -182,6 +184,7 @@ public class DownstreamBridge extends PacketHandler
} }
} }
} }
}
@Override @Override
public void handle(PacketFAPluginMessage pluginMessage) throws Exception public void handle(PacketFAPluginMessage pluginMessage) throws Exception