recognize "mindflayer" as an alternative spelling for "mind flayer"
treat mattock as blunt object when forcing locks
restore capability to force locks with wielded statue
+only count successful statue creations against the monster limit in sp_lev.c
Platform- and/or Interface-Specific Fixes
-/* SCCS Id: @(#)sp_lev.c 3.5 2005/12/14 */
+/* SCCS Id: @(#)sp_lev.c 3.5 2006/01/02 */
/* Copyright (c) 1989 by Jean-Christophe Collet */
/* NetHack may be freely redistributed. See license for details. */
*/
for (wastyp = otmp->corpsenm; ; wastyp = rndmonnum()) {
/* makemon without rndmonst() might create a group */
- was = makemon(&mons[wastyp], 0, 0, NO_MM_FLAGS);
- if (!resists_ston(was)) break;
+ was = makemon(&mons[wastyp], 0, 0, MM_NOCOUNTBIRTH);
+ if (!resists_ston(was)) {
+ (void) propagate(wastyp, TRUE, FALSE);
+ break;
+ }
mongone(was);
}
otmp->corpsenm = wastyp;