------------------------- NPC_BehaviorSet_Howler ------------------------- */
| 1596 | ------------------------- |
| 1597 | */ |
| 1598 | void NPC_BehaviorSet_Howler( int bState ) |
| 1599 | { |
| 1600 | switch( bState ) |
| 1601 | { |
| 1602 | case BS_STAND_GUARD: |
| 1603 | case BS_PATROL: |
| 1604 | case BS_STAND_AND_SHOOT: |
| 1605 | case BS_HUNT_AND_KILL: |
| 1606 | case BS_DEFAULT: |
| 1607 | NPC_BSHowler_Default(); |
| 1608 | break; |
| 1609 | default: |
| 1610 | NPC_BehaviorSet_Default( bState ); |
| 1611 | break; |
| 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | /* |
| 1616 | ------------------------- |
no test coverage detected