From 9372b35c4662169937bfed92daf86921640eb360 Mon Sep 17 00:00:00 2001 From: Patric Mueller Date: Wed, 20 May 2020 16:40:40 +0200 Subject: [PATCH] Demons summoning other demons only when near hero Commit 2fbf9573d5 dropped erroneously the range condition for demons summoning other demons. --- src/mhitu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mhitu.c b/src/mhitu.c index a74e543df..29d257294 100644 --- a/src/mhitu.c +++ b/src/mhitu.c @@ -594,7 +594,7 @@ register struct monst *mtmp; /* when not cancelled and not in current form due to shapechange, many demons can summon more demons and were creatures can summon critters; also, were creature might change from human to animal or vice versa */ - if (mtmp->cham == NON_PM && !mtmp->mcan + if (mtmp->cham == NON_PM && !mtmp->mcan && !range2 && (is_demon(mdat) || is_were(mdat))) { summonmu(mtmp, youseeit); mdat = mtmp->data; /* update cached value in case of were change */