Difference for main/command.c from version 1.2 to 1.3


version 1.2 version 1.3
Line 12
 
Line 12
 #include "nncoms.h"  #include "nncoms.h"
 #include "ignore.h"  #include "ignore.h"
   
   //added 06/27/99 Victor Rachels
   #include "vlcnfire.h"
   #include "reconfig.h"
   #include "multipow.h"
   //end this section addition - VR
   
 //added 04/19/99 Matt Mueller  //added 04/19/99 Matt Mueller
 #include "multiver.h"  #include "multiver.h"
 //end addition -MM  //end addition -MM
   
 //added on 6/15/99 by Owen Evans  
 #include "strutil.h"  
 //end added - OE  
   
 int Command_parse(char *command)  int Command_parse(char *command)
 {  {
 #ifdef NETWORK  #ifdef NETWORK
Line 54
 
Line 56
           listignore();            listignore();
           return 1;            return 1;
         }          }
   //added 06/27/99 Victor Rachels for altvulcan reconfig
          if((cmdlng==9)&&!strnicmp("altvulcan",command,9))
           {
              if(!use_alt_vulcanfire)
               {
                 hud_message(MSGC_GAME_FEEDBACK, "now using alternate vulcanfire");
                 use_alt_vulcanfire=1;
                 Netgame.flags |= NETFLAG_ENABLE_ALT_VULCAN;
                 reconfig_send_gameinfo(100,1);
               }
              else
               hud_message(MSGC_GAME_FEEDBACK, "already using alternate vulcanfire");
             return 1;
           }
   //end this section addition - VR
        if((cmdlng==9)&&!strnicmp("clearbans",command,9))         if((cmdlng==9)&&!strnicmp("clearbans",command,9))
         {          {
           clearbans();            clearbans();

Legend:
line(s) removed in v.1.2 
line(s) changed
 line(s) added in v.1.3