]> granicus.if.org Git - nethack/commitdiff
fix github issue #562 - baby gold dragon
authorPatR <rankin@nethack.org>
Tue, 3 Aug 2021 22:00:03 +0000 (15:00 -0700)
committerPatR <rankin@nethack.org>
Tue, 3 Aug 2021 22:00:03 +0000 (15:00 -0700)
wouldn't grow up into gold dragon because the pairing was omitted
from the little-to-big list.

Fixes #562

doc/fixes37.0
src/mondata.c

index 7851d0826082f4b1de914efd61bf3d83b27417fc..ea01b63379a3e762982daa6b18672f8b1579d299 100644 (file)
@@ -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
index 22af3b1fe62976867da9996e69c3a396b9d91c6c..8e11b89c1bdf47f58097f7f83c5c1f571b9ed4dc 100644 (file)
@@ -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},