From c3971a036106944cd8d4d243207330291b33a54d Mon Sep 17 00:00:00 2001 From: DESTROYGIRL <170364626+DESTROYGIRL@users.noreply.github.com> Date: Tue, 31 Mar 2026 16:35:36 +0100 Subject: [PATCH] initial --- src/game/server/neo/neo_player.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/game/server/neo/neo_player.cpp b/src/game/server/neo/neo_player.cpp index d75a80409..be0f5e675 100644 --- a/src/game/server/neo/neo_player.cpp +++ b/src/game/server/neo/neo_player.cpp @@ -2894,8 +2894,11 @@ CBaseEntity* CNEO_Player::EntSelectSpawnPoint( void ) const bool bIsTeamplay = NEORules()->IsTeamplay(); if (!bIsTeamplay) { - pSpawnpointName = "info_player_deathmatch"; - pLastSpawnPoint = g_pLastSpawn; + if (GetTeamNumber() > LAST_SHARED_TEAM) + { + pSpawnpointName = "info_player_deathmatch"; + pLastSpawnPoint = g_pLastSpawn; + } } else {