Changeset 491
- Timestamp:
- 08/16/06 02:20:29 (2 years ago)
- Files:
-
- 1.8.0/CHANGES.180 (modified) (1 diff)
- 1.8.0/Patchlevel (modified) (1 diff)
- 1.8.0/game/txt/hlp/pennv180.hlp (modified) (2 diffs)
- 1.8.0/game/txt/hlp/pennvOLD.hlp (modified) (1 diff)
- 1.8.0/hdrs/version.h (modified) (1 diff)
- 1.8.0/src/atr_tab.c (modified) (1 diff)
- 1.8.0/src/game.c (modified) (1 diff)
- 1.8.0/src/speech.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.0/CHANGES.180
r489 r491 12 12 13 13 ========================================================================== 14 15 Version 1.8.0 patchlevel 4 March 20, 2005 16 17 Fixes: 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 14 24 15 25 Version 1.8.0 patchlevel 3 February 26, 2005 1.8.0/Patchlevel
r489 r491 1 1 Do not edit this file. It is maintained by the official PennMUSH patches. 2 This is PennMUSH 1.8.0p 32 This is PennMUSH 1.8.0p4 1.8.0/game/txt/hlp/pennv180.hlp
r489 r491 1 & 1.8.0p 31 & 1.8.0p4 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.8.0 patchlevel 4 March 20, 2005 15 16 Fixes: 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 14 25 Version 1.8.0 patchlevel 3 February 26, 2005 15 26 1.8.0/game/txt/hlp/pennvOLD.hlp
r489 r491 4418 4418 type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 4419 4419 4420 1.8.0: 0, 1, 2, 3 4420 1.8.0: 0, 1, 2, 3, 4 4421 4421 1.7.7: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 4422 4422 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 1 1 #define VERSION "1.8.0" 2 #define PATCHLEVEL " 3"3 #define PATCHDATE "[0 2/26/2005]"4 #define NUMVERSION 00100800000 32 #define PATCHLEVEL "4" 3 #define PATCHDATE "[03/20/2005]" 4 #define NUMVERSION 001008000004 1.8.0/src/atr_tab.c
r477 r491 304 304 305 305 /* Is this attribute in the table? */ 306 307 if (*name == '@') 308 name++; 309 306 310 ap = aname_hash_lookup(name); 307 311 if (!ap) { 1.8.0/src/game.c
r489 r491 2232 2232 do_list_flags("FLAG", player, "", lc, T("Flags")); 2233 2233 else if (string_prefix("powers", arg)) 2234 do_list_flags("POWER S", player, "", lc, T("Powers"));2234 do_list_flags("POWER", player, "", lc, T("Powers")); 2235 2235 else 2236 2236 notify(player, T("I don't understand what you want to @list.")); 1.8.0/src/speech.c
r469 r491 366 366 367 367 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); 370 370 p = tprintf("You sense: %s%s%s", Name(player), gap, arg2); 371 371 } else {
