From 213e3e4d00f49a332855fdde50c97e81f93a8f00 Mon Sep 17 00:00:00 2001 From: "nethack.rankin" Date: Tue, 11 Oct 2005 04:30:24 +0000 Subject: [PATCH] SC343-9 followup (trunk only) monst->cham usage bit. CHAM_ORDINARY probably ought to be discarded and replaced by NON_PM; then mons[0] wouldn't be ineligible to become a shapechanger. (Not that we want giant ants to mutate on the fly, but in case someone ever inserts something interesting in front of them.) --- src/read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.c b/src/read.c index f30957dd2..cc6069ea7 100644 --- a/src/read.c +++ b/src/read.c @@ -2014,7 +2014,7 @@ create_particular() } if (mtmp) { madeany = TRUE; - if (mtmp->cham && firstchoice != NON_PM) + if (mtmp->cham != CHAM_ORDINARY && firstchoice != NON_PM) (void)newcham(mtmp, &mons[firstchoice], FALSE, FALSE); } } -- 2.40.0