diff --git a/maps/bots/objectives/_manager.gsc b/maps/bots/objectives/_manager.gsc index de96146..a51feb4 100644 --- a/maps/bots/objectives/_manager.gsc +++ b/maps/bots/objectives/_manager.gsc @@ -119,6 +119,11 @@ bot_objective_think() for ( i = 0; i < objectives.size; i++ ) { + if ( objectives[i].fPriority <= -100 ) + { + continue; + } + heap HeapInsert( objectives[i] ); }