From 8f0b21578ae12e587c1bde45a84b48341ac2649c Mon Sep 17 00:00:00 2001 From: ineed bots Date: Mon, 23 Sep 2024 13:39:04 -0600 Subject: [PATCH] cvar, not dvar --- maps/mp/bots/_bot_script.gsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maps/mp/bots/_bot_script.gsc b/maps/mp/bots/_bot_script.gsc index b77399f..9c3bcb5 100644 --- a/maps/mp/bots/_bot_script.gsc +++ b/maps/mp/bots/_bot_script.gsc @@ -676,12 +676,12 @@ start_bot_threads() self thread bot_listen_to_steps(); self thread bot_uav_think(); - if ( getdvarint( "bots_play_nade" ) ) + if ( getcvarint( "bots_play_nade" ) ) { // self thread bot_use_grenade_think(); } - if ( getdvarint( "bots_play_obj" ) ) + if ( getcvarint( "bots_play_obj" ) ) { } }