From 3806c3d2d9a12a8c856731146739ecca46f4183c Mon Sep 17 00:00:00 2001 From: ineed bots Date: Sat, 16 Apr 2022 16:15:24 -0600 Subject: [PATCH] allow custom bot dvars --- main_shared/maps/mp/gametypes/_bot.gsc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main_shared/maps/mp/gametypes/_bot.gsc b/main_shared/maps/mp/gametypes/_bot.gsc index 9615ee7..da235f6 100644 --- a/main_shared/maps/mp/gametypes/_bot.gsc +++ b/main_shared/maps/mp/gametypes/_bot.gsc @@ -343,6 +343,9 @@ bot_set_difficulty( difficulty ) } else // 'normal' difficulty { + if ( difficulty != "normal" ) + return; + SetDvar( "sv_botMinDeathTime", "500" ); SetDvar( "sv_botMaxDeathTime", "1000" ); SetDvar( "sv_botMinFireTime", "600" );