Fix two small typos.

This commit is contained in:
Robin Lambertz 2013-04-09 01:18:00 +01:00
parent e5c457df04
commit f935f93d98

View File

@ -153,10 +153,10 @@ public class DownstreamBridge extends PacketHandler
if ( team.mode == 0 ) if ( team.mode == 0 )
{ {
t = new Team( team.name ); t = new Team( team.name );
con.serverSentScoreboard.addTeam( team ); con.serverSentScoreboard.addTeam( t );
} else } else
{ {
con.serverSentScoreboard.getTeam( team.name ); t = con.serverSentScoreboard.getTeam( team.name );
} }
if ( t != null ) if ( t != null )