From f1544de9d3ecd6ea85f98d2d2e8299a36bfccfcd Mon Sep 17 00:00:00 2001 From: Umbire <56782189+Umbire@users.noreply.github.com> Date: Sat, 3 Feb 2024 18:15:16 -0500 Subject: [PATCH] error in gnoll warrior loadout I know this has basically been abandoned, but this might be worth it: this was a leftover from removing the DSM in gnolls' starting inventory. --- src/makemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makemon.c b/src/makemon.c index 253ec2ddd..4f85273b7 100644 --- a/src/makemon.c +++ b/src/makemon.c @@ -1710,7 +1710,7 @@ register struct monst *mtmp; case PM_GNOLL_WARRIOR: if(!rn2(2)) (void) mongets(mtmp, ORCISH_HELM); - else if (rn2(3)) + if (rn2(3)) (void) mongets(mtmp, SCALE_MAIL); else (void) mongets(mtmp, SPLINT_MAIL);