If you put a %s or something of the sort in a room description, it can cause the MUD to crash due to a seg fault when the room is being saved.
This change should occur in genwld.c
Code:
- fprintf(sf, convert_from_tabs(buf2), 0);
+ fprintf(sf, "%s", convert_from_tabs(buf2));