From: Rudolf Polzer Date: Sun, 15 May 2011 18:00:22 +0000 (+0200) Subject: fix a stupid typo (why did the more stupid fteqcc not notice it) X-Git-Tag: xonotic-v0.5.0~246 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=275e6808b96fa042eeb3e32ad81b8e2b8ec66cbd;p=xonotic%2Fxonotic-data.pk3dir.git fix a stupid typo (why did the more stupid fteqcc not notice it) --- diff --git a/qcsrc/server/cl_client.qc b/qcsrc/server/cl_client.qc index 52d1a89be..1406e13b8 100644 --- a/qcsrc/server/cl_client.qc +++ b/qcsrc/server/cl_client.qc @@ -333,7 +333,7 @@ entity SelectSpawnPoint (float anypoint) { // we request a spawn for a team, and we have team // spawns, but that team has no spawns? - if(have_team_spawns[0]) + if(have_team_spawns_forteam[0]) // try noteam spawns teamcheck = 0; else @@ -343,7 +343,7 @@ entity SelectSpawnPoint (float anypoint) else teamcheck = self.team; // MUST be team } - else if(have_team_spawns == 0 && have_team_spawns[0]) + else if(have_team_spawns == 0 && have_team_spawns_forteam[0]) teamcheck = 0; // MUST be noteam else teamcheck = -1;