/* call-seq:
 *      bz_get_team_player_limit(team) -> Fixnum
 *
 *      This method returns the player limit of the given team.
 */ 

static VALUE
bzflag_bz_getTeamPlayerLimit(VALUE self, VALUE team)
{
        return INT2NUM(bz_getTeamPlayerLimit((bz_eTeamType) FIX2INT(team)));
}