Rope golems may death drop grappling hooks

This commit is contained in:
Pasi Kallinen
2026-01-15 18:44:46 +02:00
parent 5d7b7b823a
commit a4e032762f
2 changed files with 4 additions and 2 deletions

View File

@@ -667,7 +667,9 @@ make_corpse(struct monst *mtmp, unsigned int corpseflags)
case PM_ROPE_GOLEM:
num = rn2(3);
while (num-- > 0) {
obj = mksobj_at(rn2(2) ? LEASH : BULLWHIP, x, y, TRUE, FALSE);
obj = mksobj_at(rn2(2) ? LEASH
: rn2(3) ? BULLWHIP : GRAPPLING_HOOK,
x, y, TRUE, FALSE);
}
free_mgivenname(mtmp);
break;