From: cohrs Date: Sat, 2 Feb 2002 05:00:08 +0000 (+0000) Subject: dragons have scales, not fur X-Git-Tag: MOVE2GIT~3296 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94c77febc0edb8409876fbb45bb42f547e569da7;p=nethack dragons have scales, not fur body_part should return "scales" for the HAIR part of a dragon --- diff --git a/src/polyself.c b/src/polyself.c index 3c2ac0d72..9c38369cc 100644 --- a/src/polyself.c +++ b/src/polyself.c @@ -1174,7 +1174,7 @@ int part; return horse_parts[part]; if (mptr->mlet == S_EEL && mptr != &mons[PM_JELLYFISH]) return fish_parts[part]; - if (slithy(mptr)) + if (slithy(mptr) || (mptr->mlet == S_DRAGON && part == HAIR)) return snake_parts[part]; if (mptr->mlet == S_EYE) return sphere_parts[part];