Updated World and files for 3.57 release. --Rumble

This commit is contained in:
Rumble 2008-08-11 22:53:41 +00:00
parent 97dcc94afe
commit efab0b04fc
41 changed files with 7564 additions and 7350 deletions

View file

@ -2115,7 +2115,7 @@ ACMD(do_toggle)
break;
case SCMD_SCREENWIDTH:
if (!*arg2)
send_to_char(ch, "You current screen width is set to %d characters.", GET_SCREEN_WIDTH(ch));
send_to_char(ch, "Your current screen width is set to %d characters.", GET_SCREEN_WIDTH(ch));
else if (is_number(arg2)) {
GET_SCREEN_WIDTH(ch) = MIN(MAX(atoi(arg2), 40), 200);
send_to_char(ch, "Okay, your screen width is now set to %d characters.", GET_SCREEN_WIDTH(ch));

View file

@ -24,7 +24,7 @@
* @todo cpp_extern isn't needed here (or anywhere) as the extern reserved word
* works correctly with C compilers (at least in my Experience)
* Jeremy Osborne 1/28/2008 */
cpp_extern const char *tbamud_version = "tbaMUD, version 3.56";
cpp_extern const char *tbamud_version = "tbaMUD, version 3.57";
/* strings corresponding to ordinals/bitvectors in structs.h */
/* (Note: strings for class definitions in class.c instead of here) */

View file

@ -19,7 +19,7 @@
* on an older version. You are supposed to compare this with the macro
* TBAMUD_VERSION() in utils.h.
* It is read as Major/Minor/Patchlevel - MMmmPP */
#define _TBAMUD 0x030560
#define _TBAMUD 0x030570
/** If you want equipment to be automatically equipped to the same place
* it was when players rented, set the define below to 1 because