Skip to content

Commit 3c6e8b3

Browse files
committed
Fix oversight in HL2MP mp_idledealmethod
1 parent 4ec956d commit 3c6e8b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/game/server/hl2mp/hl2mp_player.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ void CHL2MP_Player::CheckForIdle( void )
18411841
else if ( mp_idledealmethod.GetInt() == 1 )
18421842
{
18431843
//if ( GetTeamNumber() < FIRST_GAME_TEAM )
1844-
if ( GetTeamNumber() != TEAM_SPECTATOR )
1844+
if ( GetTeamNumber() == TEAM_SPECTATOR )
18451845
{
18461846
bKickPlayer = true;
18471847
}

0 commit comments

Comments
 (0)