Phoenix Dracul found that after making mobs wear certain eq and instarooming, when he would do an "redit rlist" the mud would crash. Basically the BVs are there but the array is missing a few elements, therefore the crash.
in build.c
replace
all of char * const wear_locs with
char * const wear_locs [] =
{
"light", "finger1", "finger2", "neck1", "neck2", "body", "head", "legs",
"feet", "hands", "arms", "shield", "about", "waist", "wrist1", "wrist2",
"wield", "hold", "dual_wield", "ears", "eyes", "missile_wield", "back",
"holster1", "holster2", "bothwrists"
};
The 3 missing ones are: back, holster1, and holster2.
Later,
KeB