pull request #1471 - winter wolf cub

Pull request by umbire:  the list of monsters which had lycanthrope
forms includes winter wolf but was missing winter wolf cub.  Affects
cannibalism check when hero is a werewolf and eats a winter wolf cub
corpse.

One-line fix entered manually rather than using the git commit.

Fixes #1471
This commit is contained in:
PatR
2025-12-23 23:13:08 -08:00
parent 9828a05bbb
commit 45766db520
2 changed files with 3 additions and 1 deletions

View File

@@ -1554,6 +1554,7 @@ writing on an unidentified scroll of blank paper identifies blank paper
dumplogs include spells and skills
praying will not restore monster-form HP while polymorphed, unless you
have unchanging
winter wolf cub was missing for monster to lycanthrope conversion
Fixes to 3.7.0-x General Problems Exposed Via git Repository

View File

@@ -1,4 +1,4 @@
/* NetHack 3.7 were.c $NHDT-Date: 1717570494 2024/06/05 06:54:54 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.36 $ */
/* NetHack 3.7 were.c $NHDT-Date: 1766588485 2025/12/24 07:01:25 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.41 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2011. */
/* NetHack may be freely redistributed. See license for details. */
@@ -84,6 +84,7 @@ were_beastie(int pm)
case PM_WOLF:
case PM_WARG:
case PM_WINTER_WOLF:
case PM_WINTER_WOLF_CUB:
return PM_WEREWOLF;
default:
break;