Backfilled the changelog, several fixes. --Rumble

This commit is contained in:
Rumble 2011-03-31 02:09:33 +00:00
parent 231a1a2dcd
commit bc95dfe20e
9 changed files with 28 additions and 22 deletions

View file

@ -1,5 +1,5 @@
/**
* @file comm.h
* @file config.h
* Configuration of various aspects of tbaMUD operation.
*
* Part of the core tbaMUD source code distribution, which is a derivative

View file

@ -2080,7 +2080,7 @@ static void load_zones(FILE *fl, char *zonename)
}
else
{
/* We found 12 values, so deal with the strings */
/* We found 10 values, so deal with the strings */
Z.zone_flags[0] = asciiflag_conv(zbuf1);
Z.zone_flags[1] = asciiflag_conv(zbuf2);
Z.zone_flags[2] = asciiflag_conv(zbuf3);

View file

@ -413,8 +413,8 @@ static void medit_disp_menu(struct descriptor_data *d)
"-- Mob Number: [%s%d%s]\r\n"
"%s1%s) Sex: %s%-7.7s%s %s2%s) Keywords: %s%s\r\n"
"%s3%s) S-Desc: %s%s\r\n"
"%s4%s) L-Desc:-\r\n%s%s"
"%s5%s) D-Desc:-\r\n%s%s",
"%s4%s) L-Desc:-\r\n%s%s\r\n"
"%s5%s) D-Desc:-\r\n%s%s\r\n",
cyn, OLC_NUM(d), nrm,
grn, nrm, yel, genders[(int)GET_SEX(mob)], nrm,

View file

@ -390,7 +390,7 @@
#define WEAR_WRIST_L 15 /**< Equipment Location Left Wrist */
#define WEAR_WIELD 16 /**< Equipment Location Weapon */
#define WEAR_HOLD 17 /**< Equipment Location held in offhand */
/** Total number of available equipment lcoations */
/** Total number of available equipment locations */
#define NUM_WEARS 18
/* object-related defines */
@ -418,8 +418,7 @@
#define ITEM_PEN 21 /**< Item is a pen */
#define ITEM_BOAT 22 /**< Item is a boat */
#define ITEM_FOUNTAIN 23 /**< Item is a fountain */
/** Total number of item types.
* @todo Should this be 23? */
/* Total number of item types. */
#define NUM_ITEM_TYPES 24
/* Take/Wear flags: used by obj_data.obj_flags.wear_flags */