| 1233 | */ |
| 1234 | |
| 1235 | qboolean NPC_CheckEnemyExt( qboolean checkAlerts ) |
| 1236 | { |
| 1237 | //Make sure we're ready to think again |
| 1238 | /* |
| 1239 | if ( NPCInfo->enemyCheckDebounceTime > level.time ) |
| 1240 | return qfalse; |
| 1241 | |
| 1242 | //Get our next think time |
| 1243 | NPCInfo->enemyCheckDebounceTime = level.time + NPC_GetCheckDelta(); |
| 1244 | |
| 1245 | //Attempt to find an enemy |
| 1246 | return NPC_FindEnemy(); |
| 1247 | */ |
| 1248 | return NPC_FindEnemy( checkAlerts ); |
| 1249 | } |
| 1250 | |
| 1251 | /* |
| 1252 | ------------------------- |
no test coverage detected