version 1.10 | | version 1.11 |
---|
| | |
/* | | /* |
* static char *rcsid_readable_c = | | * static char *rcsid_readable_c = |
* "$Id: readable.c,v 1.10 2002/07/15 04:57:12 mwedel Exp $"; | | * "$Id: readable.c,v 1.11 2002/09/05 05:23:15 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* in the archive in a snap!) -b.t. | | * in the archive in a snap!) -b.t. |
*/ | | */ |
tmp = get_random_mon (level * 3); | | tmp = get_random_mon (level * 3); |
do | | while (tmp) { |
{ | | |
/* monster description */ | | /* monster description */ |
sprintf (tmpbuf, "\n---\n%s", mon_desc (tmp)); | | sprintf (tmpbuf, "\n---\n%s", mon_desc (tmp)); |
| | |
| | |
/* Note that the value this returns is not based on level */ | | /* Note that the value this returns is not based on level */ |
tmp = get_next_mon (tmp); | | tmp = get_next_mon (tmp); |
} | | } |
while (tmp); | | |
| | |
#ifdef BOOK_MSG_DEBUG | | #ifdef BOOK_MSG_DEBUG |
LOG (llevDebug, "\n mon_info_msg() created strng: %d\n", strlen (retbuf)); | | LOG (llevDebug, "\n mon_info_msg() created strng: %d\n", strlen (retbuf)); |