Stock ROM 2.4 has a bug in bust_a_prompt.  Specifically, the problem
is in the part where exits are outputted to the character via the
prompt.

Look for the part in bust_a_prompt that says:

case 'e':

Go down and find:
if (!found)
    strcat(buf,"none");

Change buf to doors, so that it should look like:
if (!found)
    strcat(doors, "none");

I'll leave it as an exercise to the reader to figure out why, but
it should be pretty straightforward.  Please note.. not fixing this
bug on my mud sometimes resulted in descriptors being overwritten
with "none", and intermittent pfile corruption may also occur.


Anarchangel