Changeset 437
- Timestamp:
- 08/12/06 19:37:37 (2 years ago)
- Files:
-
- 1.7.7/CHANGES.177 (modified) (1 diff)
- 1.7.7/Patchlevel (modified) (1 diff)
- 1.7.7/game/txt/hlp/pennv177.hlp (modified) (2 diffs)
- 1.7.7/game/txt/hlp/pennvOLD.hlp (modified) (1 diff)
- 1.7.7/hdrs/version.h (modified) (1 diff)
- 1.7.7/src/bsd.c (modified) (1 diff)
- 1.7.7/src/notify.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.7.7/CHANGES.177
r435 r437 18 18 19 19 ========================================================================== 20 21 Version 1.7.7 patchlevel 19 August 19, 2003 22 23 Fixes: 24 * When SSL connections are dropped on reboot, other players weren't 25 seeing disconnect messages. Now they are. 26 * Two calls to flaglist_check_long didn't get converted to the new 27 abstraction layer, making flag_broadcast not work right. 28 Report by Luminar@M*U*S*H. 29 20 30 21 31 Version 1.7.7 patchlevel 18 August 19, 2003 1.7.7/Patchlevel
r435 r437 1 1 Do not edit this file. It is maintained by the official PennMUSH patches. 2 This is PennMUSH 1.7.7p1 82 This is PennMUSH 1.7.7p19 1.7.7/game/txt/hlp/pennv177.hlp
r435 r437 1 & 1.7.7p1 81 & 1.7.7p19 2 2 & changes 3 3 This is a list of changes in this patchlevel which are probably of … … 12 12 be read in 'help patchlevels'. 13 13 14 Version 1.7.7 patchlevel 19 August 19, 2003 15 16 Fixes: 17 * When SSL connections are dropped on reboot, other players weren't 18 seeing disconnect messages. Now they are. 19 * Two calls to flaglist_check_long didn't get converted to the new 20 abstraction layer, making flag_broadcast not work right. 21 Report by Luminar@M*U*S*H. 22 23 24 & 1.7.7p18 14 25 Version 1.7.7 patchlevel 18 August 19, 2003 15 26 1.7.7/game/txt/hlp/pennvOLD.hlp
r435 r437 4418 4418 type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 4419 4419 4420 1.7.7: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 4420 1.7.7: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 4421 4421 1.7.6: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 4422 4422 1.7.5: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 1.7.7/hdrs/version.h
r435 r437 1 #define VERSION "PennMUSH version 1.7.7 patchlevel 1 8[08/19/2003]"2 #define SHORTVN "PennMUSH 1.7.7p1 8"3 #define NUMVERSION 00100700701 81 #define VERSION "PennMUSH version 1.7.7 patchlevel 19 [08/19/2003]" 2 #define SHORTVN "PennMUSH 1.7.7p19" 3 #define NUMVERSION 001007007019 1.7.7/src/bsd.c
r435 r437 4554 4554 } 4555 4555 } 4556 /* Make sure everyone sees their disconnect messages, too */ 4557 DESC_ITER_CONN(d) { 4558 process_output(d); 4559 } 4556 4560 /* Close server socket */ 4557 4561 ssl_close_connection(ssl_master_socket); 1.7.7/src/notify.c
r433 r437 1269 1269 ok = 1; 1270 1270 if (flag1) 1271 ok = ok && flaglist_check_long( GOD, d->player, flag1, 0);1271 ok = ok && flaglist_check_long("FLAG", GOD, d->player, flag1, 0); 1272 1272 if (flag2) 1273 ok = ok && flaglist_check_long( GOD, d->player, flag2, 0);1273 ok = ok && flaglist_check_long("FLAG", GOD, d->player, flag2, 0); 1274 1274 if (ok) { 1275 1275 queue_string_eol(d, tbuf1);
