Changeset 409
- Timestamp:
- 08/12/06 16:54:56 (2 years ago)
- Files:
-
- 1.7.7/CHANGES (modified) (1 diff)
- 1.7.7/Patchlevel (modified) (1 diff)
- 1.7.7/game/txt/hlp/pennvers.hlp (modified) (4 diffs)
- 1.7.7/hdrs/version.h (modified) (1 diff)
- 1.7.7/src/match.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.7.7/CHANGES
r407 r409 19 19 ========================================================================== 20 20 21 Version 1.7.7 patchlevel 5 January 7, 2003 22 23 Fixes: 24 * Fixes from 1.7.6p5. 25 26 21 27 Version 1.7.7 patchlevel 4 January 2, 2003 22 28 1.7.7/Patchlevel
r407 r409 1 1 Do not edit this file. It is maintained by the official PennMUSH patches. 2 This is PennMUSH 1.7.7p 42 This is PennMUSH 1.7.7p5 1.7.7/game/txt/hlp/pennvers.hlp
r407 r409 1 1 & changes 2 & 1.7.7p 42 & 1.7.7p5 3 3 This is a list of changes in this patchlevel which are probably of 4 4 interest to players. More information about new commands and functions … … 12 12 be read in 'help patchlevels'. 13 13 14 Version 1.7.7 patchlevel 5 January 7, 2003 15 16 Fixes: 17 * Fixes from 1.7.6p5. 18 19 20 & 1.7.7p4 14 21 Version 1.7.7 patchlevel 4 January 2, 2003 15 22 … … 601 608 * Indentation fixes [SW] 602 609 * Fixes up to 1.7.4p12 merged in. 610 611 & 1.7.6p5 612 Version 1.7.6 patchlevel 5 January 7, 2003 613 614 Fixes: 615 * 1.7.6p4 broke 'go #dbref', which broke the ability of followers 616 to follow. Reported by Ellis@M*U*S*H. 617 603 618 604 619 & 1.7.6p4 … … 5930 5945 type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 5931 5946 5932 1.7.7: 0, 1, 2, 3, 4 5933 1.7.6: 0, 1, 2, 3, 4 5947 1.7.7: 0, 1, 2, 3, 4, 5 5948 1.7.6: 0, 1, 2, 3, 4, 5 5934 5949 1.7.5: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 5935 5950 1.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.7p 4"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 458 458 absolute = match_absolute(match_name); 459 459 DOLIST(exit_tmp, Exits(loc)) { 460 if (exit_tmp == absolute) 460 if (exit_tmp == absolute) { 461 461 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))) 463 466 the_match = 464 467 choose_thing(match_who, type, flags, the_match, exit_tmp, match_count);
