home *** CD-ROM | disk | FTP | other *** search
/ Superpower (Alt) / SUPERPOWER.iso / q / patch / mbq111 / src / impulse2.qc < prev    next >
Encoding:
Text File  |  1996-08-27  |  568 b   |  20 lines

  1. /*
  2. ==============================================================================
  3.  
  4. Secondary Impulse Command Checker
  5.  
  6. ==============================================================================
  7. */
  8.  
  9.  
  10. //=============================================================
  11. // CheckSecondaryImpulseCommands - Called by weapons.qc before
  12. //                                   processing impulses
  13. //=============================================================
  14. void () CheckSecondaryImpulseCommands =
  15. {
  16.         if (self.impulse == BOT_CREATE)
  17.                 BotCreate();
  18.     return;
  19. };
  20.