]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove redundant code from Join (it gets executed in PutClientInServer)
authorterencehill <piuntn@gmail.com>
Sun, 4 Sep 2016 17:38:46 +0000 (19:38 +0200)
committerterencehill <piuntn@gmail.com>
Sun, 4 Sep 2016 17:38:46 +0000 (19:38 +0200)
qcsrc/server/client.qc

index 71c2b22654633f0b311497a9628b45e360499200..0676c71fe0524e025ec61f36f4bd33a7554edbc8 100644 (file)
@@ -1878,8 +1878,6 @@ void Join(entity this)
 {
        TRANSMUTE(Player, this);
 
-       SetSpectatee(this, NULL);
-
        if(!this.team_selected)
        if(autocvar_g_campaign || autocvar_g_balance_teams)
                JoinBestTeam(this, false, true);
@@ -1890,8 +1888,6 @@ void Join(entity this)
        Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_PREVENT_JOIN);
 
        PutClientInServer(this);
-       if(!this.team_selected)
-       PlayerScore_Clear(this);
 
        Send_Notification(NOTIF_ALL, NULL, MSG_INFO, ((teamplay && this.team != -1) ? APP_TEAM_ENT(this, INFO_JOIN_PLAY_TEAM) : INFO_JOIN_PLAY), this.netname);
        this.team_selected = false;