home *** CD-ROM | disk | FTP | other *** search
/ Superpower (Alt) / SUPERPOWER.iso / q / patch / mbq115 / src / impulse2.qc < prev    next >
Encoding:
Text File  |  1996-09-02  |  549 b   |  21 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.  
  19.     return;
  20. };
  21.