PennMUSH Community

Changeset 437

Show
Ignore:
Timestamp:
08/12/06 19:37:37 (2 years ago)
Author:
pennmush
Message:

PennMUSH 1.7.7p19 Archival

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.7.7/CHANGES.177

    r435 r437  
    1818 
    1919========================================================================== 
     20 
     21Version 1.7.7 patchlevel 19                     August 19, 2003 
     22 
     23Fixes: 
     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 
    2030 
    2131Version 1.7.7 patchlevel 18                     August 19, 2003 
  • 1.7.7/Patchlevel

    r435 r437  
    11Do not edit this file. It is maintained by the official PennMUSH patches. 
    2 This is PennMUSH 1.7.7p18 
     2This is PennMUSH 1.7.7p19 
  • 1.7.7/game/txt/hlp/pennv177.hlp

    r435 r437  
    1 & 1.7.7p18 
     1& 1.7.7p19 
    22& changes 
    33This is a list of changes in this patchlevel which are probably of 
     
    1212be read in 'help patchlevels'. 
    1313 
     14Version 1.7.7 patchlevel 19                     August 19, 2003 
     15 
     16Fixes: 
     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 
    1425Version 1.7.7 patchlevel 18                     August 19, 2003 
    1526 
  • 1.7.7/game/txt/hlp/pennvOLD.hlp

    r435 r437  
    44184418type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 
    44194419 
    4420 1.7.7: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 
     44201.7.7: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 
    442144211.7.6: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 
    442244221.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 18 [08/19/2003]" 
    2 #define SHORTVN "PennMUSH 1.7.7p18
    3 #define NUMVERSION 001007007018 
     1#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  
    45544554    } 
    45554555  } 
     4556  /* Make sure everyone sees their disconnect messages, too */ 
     4557  DESC_ITER_CONN(d) { 
     4558    process_output(d); 
     4559  } 
    45564560  /* Close server socket */ 
    45574561  ssl_close_connection(ssl_master_socket); 
  • 1.7.7/src/notify.c

    r433 r437  
    12691269    ok = 1; 
    12701270    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); 
    12721272    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); 
    12741274    if (ok) { 
    12751275      queue_string_eol(d, tbuf1);