From 924fc8585d71f9e5376697d3d09bc00159827aa6 Mon Sep 17 00:00:00 2001 From: ineed bots Date: Mon, 3 Oct 2022 21:55:42 -0600 Subject: [PATCH] fix this team select --- mods/bots/maps/mp/bots/_bot_script.gsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/bots/maps/mp/bots/_bot_script.gsc b/mods/bots/maps/mp/bots/_bot_script.gsc index 7626e77..f1af4a0 100644 --- a/mods/bots/maps/mp/bots/_bot_script.gsc +++ b/mods/bots/maps/mp/bots/_bot_script.gsc @@ -476,7 +476,7 @@ teamWatch() wait 0.1; - if ( self.team != "axis" || self.team != "allies" ) + if ( self.team != "axis" && self.team != "allies" ) self notify( "menuresponse", game["menu_team"], getCvar( "bots_team" ) ); while ( isdefined( self.pers["team"] ) )