From: PatR Date: Tue, 3 Aug 2021 22:00:03 +0000 (-0700) Subject: fix github issue #562 - baby gold dragon X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e7155df0cb444a0d47ff165e36e8448563310b0;p=nethack fix github issue #562 - baby gold dragon wouldn't grow up into gold dragon because the pairing was omitted from the little-to-big list. Fixes #562 --- diff --git a/doc/fixes37.0 b/doc/fixes37.0 index 7851d0826..ea01b6337 100644 --- a/doc/fixes37.0 +++ b/doc/fixes37.0 @@ -769,6 +769,7 @@ using bhitpos in flooreffects to handle erosion damage broke its original use zap hit spot, resulting in scrambled wand targetting restore previous behavior of the 'altmeta' option (only wait for a second character when getting a command keystroke, not other key input) +baby gold dragons weren't able to grow into adult gold dragons curses: 'msg_window' option wasn't functional for curses unless the binary also included tty support diff --git a/src/mondata.c b/src/mondata.c index 22af3b1fe..8e11b89c1 100644 --- a/src/mondata.c +++ b/src/mondata.c @@ -1032,6 +1032,7 @@ static const short grownups[][2] = { { PM_VAMPIRE, PM_VAMPIRE_LEADER }, { PM_BAT, PM_GIANT_BAT }, { PM_BABY_GRAY_DRAGON, PM_GRAY_DRAGON }, + { PM_BABY_GOLD_DRAGON, PM_GOLD_DRAGON }, { PM_BABY_SILVER_DRAGON, PM_SILVER_DRAGON }, #if 0 /* DEFERRED */ {PM_BABY_SHIMMERING_DRAGON, PM_SHIMMERING_DRAGON},