PennMUSH Community

Changeset 409

Show
Ignore:
Timestamp:
08/12/06 16:54:56 (2 years ago)
Author:
pennmush
Message:

PennMUSH 1.7.7p5 Archival

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.7.7/CHANGES

    r407 r409  
    1919========================================================================== 
    2020 
     21Version 1.7.7 patchlevel 5                      January 7, 2003 
     22 
     23Fixes: 
     24  * Fixes from 1.7.6p5. 
     25  
     26  
    2127Version 1.7.7 patchlevel 4                      January 2, 2003 
    2228 
  • 1.7.7/Patchlevel

    r407 r409  
    11Do not edit this file. It is maintained by the official PennMUSH patches. 
    2 This is PennMUSH 1.7.7p4 
     2This is PennMUSH 1.7.7p5 
  • 1.7.7/game/txt/hlp/pennvers.hlp

    r407 r409  
    11& changes 
    2 & 1.7.7p4 
     2& 1.7.7p5 
    33This is a list of changes in this patchlevel which are probably of 
    44interest to players. More information about new commands and functions 
     
    1212be read in 'help patchlevels'. 
    1313 
     14Version 1.7.7 patchlevel 5                      January 7, 2003 
     15 
     16Fixes: 
     17  * Fixes from 1.7.6p5. 
     18  
     19  
     20& 1.7.7p4 
    1421Version 1.7.7 patchlevel 4                      January 2, 2003 
    1522 
     
    601608  * Indentation fixes [SW] 
    602609  * Fixes up to 1.7.4p12 merged in. 
     610 
     611& 1.7.6p5 
     612Version 1.7.6 patchlevel 5                      January 7, 2003 
     613 
     614Fixes: 
     615   * 1.7.6p4 broke 'go #dbref', which broke the ability of followers  
     616     to follow. Reported by Ellis@M*U*S*H. 
     617 
    603618 
    604619& 1.7.6p4 
     
    59305945type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 
    59315946 
    5932 1.7.7: 0, 1, 2, 3, 4 
    5933 1.7.6: 0, 1, 2, 3, 4 
     59471.7.7: 0, 1, 2, 3, 4, 5 
     59481.7.6: 0, 1, 2, 3, 4, 5 
    593459491.7.5: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 
    593559501.7.4: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
  • 1.7.7/hdrs/version.h

    r407 r409  
    1 #define VERSION "PennMUSH version 1.7.7 patchlevel 4 [01/02/2003]" 
    2 #define SHORTVN "PennMUSH 1.7.7p4
     1#define VERSION "PennMUSH version 1.7.7 patchlevel 5 [01/07/2003]" 
     2#define SHORTVN "PennMUSH 1.7.7p5
  • 1.7.7/src/match.c

    r407 r409  
    458458  absolute = match_absolute(match_name); 
    459459  DOLIST(exit_tmp, Exits(loc)) { 
    460     if (exit_tmp == absolute) 
     460    if (exit_tmp == absolute) { 
    461461      the_match = exit_tmp; 
    462     else if (check_alias(match_name, Name(exit_tmp))) 
     462      if (match_count) 
     463    (*match_count)++; 
     464      break; 
     465    } else if (check_alias(match_name, Name(exit_tmp))) 
    463466      the_match = 
    464467    choose_thing(match_who, type, flags, the_match, exit_tmp, match_count);