Try and make the client not crash when switching teams. @lazertester

This commit is contained in:
md_5
2013-03-23 20:49:47 +11:00
parent fd062503e1
commit 73aaf58009
4 changed files with 68 additions and 0 deletions

View File

@@ -21,4 +21,14 @@ public class Team
{
return Collections.unmodifiableSet( players );
}
public void addPlayer(String name)
{
players.add( name );
}
public void removePlayer(String name)
{
players.remove( name );
}
}