PennMUSH Community

Changeset 491

Show
Ignore:
Timestamp:
08/16/06 02:20:29 (2 years ago)
Author:
pennmush
Message:

PennMUSH 1.8.0p4 Archival

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.0/CHANGES.180

    r489 r491  
    1212 
    1313========================================================================== 
     14 
     15Version 1.8.0 patchlevel 4                      March 20, 2005 
     16 
     17Fixes: 
     18  * @list powers crashed the MUSH. Report by Kevin@M*U*S*H. 
     19  * Multiplayer whisper-poses now use the correct conjugation of the 
     20    verb "to sense". Suggested by Cheetah@M*U*S*H. 
     21  * @attribute NAME and @attribute @NAME can both be used to display  
     22    information about attributes. [SW] 
     23 
    1424 
    1525Version 1.8.0 patchlevel 3                      February 26, 2005 
  • 1.8.0/Patchlevel

    r489 r491  
    11Do not edit this file. It is maintained by the official PennMUSH patches. 
    2 This is PennMUSH 1.8.0p3 
     2This is PennMUSH 1.8.0p4 
  • 1.8.0/game/txt/hlp/pennv180.hlp

    r489 r491  
    1 & 1.8.0p3 
     1& 1.8.0p4 
    22& changes 
    33This is a list of changes in this patchlevel which are probably of 
     
    1212be read in 'help patchlevels'. 
    1313 
     14Version 1.8.0 patchlevel 4                      March 20, 2005 
     15 
     16Fixes: 
     17  * @list powers crashed the MUSH. Report by Kevin@M*U*S*H. 
     18  * Multiplayer whisper-poses now use the correct conjugation of the 
     19    verb "to sense". Suggested by Cheetah@M*U*S*H. 
     20  * @attribute NAME and @attribute @NAME can both be used to display  
     21    information about attributes. [SW] 
     22 
     23 
     24& 1.8.0p3 
    1425Version 1.8.0 patchlevel 3                      February 26, 2005 
    1526 
  • 1.8.0/game/txt/hlp/pennvOLD.hlp

    r489 r491  
    44184418type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 
    44194419 
    4420 1.8.0: 0, 1, 2, 3 
     44201.8.0: 0, 1, 2, 3, 4 
    442144211.7.7: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
    44224422       19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 
  • 1.8.0/hdrs/version.h

    r489 r491  
    11#define VERSION "1.8.0" 
    2 #define PATCHLEVEL "3
    3 #define PATCHDATE "[02/26/2005]" 
    4 #define NUMVERSION 001008000003 
     2#define PATCHLEVEL "4
     3#define PATCHDATE "[03/20/2005]" 
     4#define NUMVERSION 001008000004 
  • 1.8.0/src/atr_tab.c

    r477 r491  
    304304 
    305305  /* Is this attribute in the table? */ 
     306 
     307  if (*name == '@') 
     308    name++; 
     309 
    306310  ap = aname_hash_lookup(name); 
    307311  if (!ap) { 
  • 1.8.0/src/game.c

    r489 r491  
    22322232    do_list_flags("FLAG", player, "", lc, T("Flags")); 
    22332233  else if (string_prefix("powers", arg)) 
    2234     do_list_flags("POWERS", player, "", lc, T("Powers")); 
     2234    do_list_flags("POWER", player, "", lc, T("Powers")); 
    22352235  else 
    22362236    notify(player, T("I don't understand what you want to @list.")); 
  • 1.8.0/src/speech.c

    r469 r491  
    366366 
    367367  if (key == 1) { 
    368     notify_format(player, T("%s senses: %s%s%s"), 
    369           tbuf + 4, Name(player), gap, arg2); 
     368    notify_format(player, (gcount > 1) ? T("%s sense: %s%s%s") : 
     369          T("%s senses: %s%s%s"), tbuf + 4, Name(player), gap, arg2); 
    370370    p = tprintf("You sense: %s%s%s", Name(player), gap, arg2); 
    371371  } else {