| 1310 | */ |
| 1311 | |
| 1312 | qboolean NPC_CheckEnemyExt( qboolean checkAlerts ) |
| 1313 | { |
| 1314 | //Make sure we're ready to think again |
| 1315 | /* |
| 1316 | if ( NPCInfo->enemyCheckDebounceTime > level.time ) |
| 1317 | return qfalse; |
| 1318 | |
| 1319 | //Get our next think time |
| 1320 | NPCInfo->enemyCheckDebounceTime = level.time + NPC_GetCheckDelta(); |
| 1321 | |
| 1322 | //Attempt to find an enemy |
| 1323 | return NPC_FindEnemy(); |
| 1324 | */ |
| 1325 | return NPC_FindEnemy( checkAlerts ); |
| 1326 | } |
| 1327 | |
| 1328 | /* |
| 1329 | ------------------------- |
no test coverage detected