This commit is contained in:
ineed bots 2023-07-15 13:20:49 -06:00
parent 3f41b61b8f
commit b7254c0131

View File

@ -119,6 +119,11 @@ bot_objective_think()
for ( i = 0; i < objectives.size; i++ ) for ( i = 0; i < objectives.size; i++ )
{ {
if ( objectives[i].fPriority <= -100 )
{
continue;
}
heap HeapInsert( objectives[i] ); heap HeapInsert( objectives[i] );
} }