From 07184c9640d2e13602bd81db8c60d9cabd17a384 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Fri, 5 Aug 2022 13:43:36 +0300 Subject: [PATCH] Don't give fake Demonbanes to angels Demonbane is a mace now, so trying to generate a long sword made fake Demonbanes. Just don't give Demonbane at all to random angels. --- src/makemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makemon.c b/src/makemon.c index d9a4d6676..87f0a9809 100644 --- a/src/makemon.c +++ b/src/makemon.c @@ -328,7 +328,7 @@ m_initweap(register struct monst *mtmp) && sgn(mtmp->isminion ? EMIN(mtmp)->min_align : ptr->maligntyp) == A_LAWFUL) otmp = oname(otmp, - artiname(rn2(2) ? ART_DEMONBANE : ART_SUNSWORD), + artiname(ART_SUNSWORD), ONAME_RANDOM); /* randomly created */ bless(otmp); otmp->oerodeproof = TRUE;