Difference for server/init.c from version 1.34 to 1.35


version 1.34 version 1.35
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_init_c =   * static char *rcsid_init_c =
  *   "$Id: init.c,v 1.34 2002/11/13 04:57:32 garbled Exp $";   *   "$Id: init.c,v 1.35 2002/11/13 05:24:53 garbled Exp $";
  */   */
   
 /*  /*
Line 427
 
Line 427
  LOG(llevError, "load_settings: Unkown value for"   LOG(llevError, "load_settings: Unkown value for"
      "recycle_tmp_maps: %s\n", cp);       "recycle_tmp_maps: %s\n", cp);
      }       }
    } else if (!strcasecmp(buf, "explore_mode")) {
        if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
    settings.explore_mode=TRUE;
        } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
    settings.explore_mode=FALSE;
        } else {
    LOG(llevError, "load_settings: Unkown value for"
        "explore_mode: %s\n", cp);
        }
    } else if (!strcasecmp(buf, "spellpoint_level_depend")) {
        if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
    settings.spellpoint_level_depend=TRUE;
        } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
    settings.spellpoint_level_depend=FALSE;
        } else {
    LOG(llevError, "load_settings: Unkown value for"
        "spellpoint_level_depend: %s\n", cp);
        }
  } else if (!strcasecmp(buf,"simple_exp")) {   } else if (!strcasecmp(buf,"simple_exp")) {
      if (!strcasecmp(cp,"on") || !strcasecmp(cp,"true")) {       if (!strcasecmp(cp,"on") || !strcasecmp(cp,"true")) {
  settings.simple_exp=TRUE;   settings.simple_exp=TRUE;
Line 700
 
Line 718
 #ifdef X_EDITOR  #ifdef X_EDITOR
   printf("Editor:\t\t%s\n",X_EDITOR);    printf("Editor:\t\t%s\n",X_EDITOR);
 #endif  #endif
 #ifdef EXPLORE_MODE  
   printf("Explore mode:\t<true>\n");  
 #else  
   printf("Explore mode:\t<false>\n");  
 #endif  
 #ifdef SHOP_LISTINGS  #ifdef SHOP_LISTINGS
   printf("Shop listings:\t<true>\n");    printf("Shop listings:\t<true>\n");
 #else  #else


Legend:
line(s) removed in v.1.34 
line(s) changed
 line(s) added in v.1.35

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:34