diff --git a/maps/bots/_bot_script.gsc b/maps/bots/_bot_script.gsc index a2cec3c..b2b164d 100644 --- a/maps/bots/_bot_script.gsc +++ b/maps/bots/_bot_script.gsc @@ -7,7 +7,7 @@ */ bot_script_init() { - level thread maps\bots\script_objectives\_obj_init::init(); + //level thread maps\bots\script_objectives\_obj_init::init(); } /* @@ -31,7 +31,7 @@ connected() self thread onBotSpawned(); self thread onSpawned(); - self thread maps\bots\script_objectives\_obj_init::connected(); + //self thread maps\bots\script_objectives\_obj_init::connected(); } /* @@ -370,7 +370,7 @@ onSpawned() self.bot_lock_goal = false; self.bot_was_follow_script_update = undefined; - self thread maps\bots\script_objectives::spawned(); + //self thread maps\bots\script_objectives::spawned(); } } @@ -383,5 +383,5 @@ start_bot_threads() level endon( "intermission" ); self endon( "zombified" ); - self thread maps\bots\script_objectives::start_bot_threads(); + //self thread maps\bots\script_objectives::start_bot_threads(); }