Merge branch 'feature/sounds' of https://github.com/NullCGT/NetHack into NullCGT-minotaurs-pr298

This commit is contained in:
nhmall
2020-02-09 20:38:22 -05:00
3 changed files with 12 additions and 2 deletions

View File

@@ -339,6 +339,9 @@ register struct monst *mtmp;
case MS_WAIL:
ret = "wail";
break;
case MS_MOO:
ret = "low";
break;
case MS_SILENT:
ret = "commotion";
break;
@@ -750,6 +753,12 @@ register struct monst *mtmp;
#endif
}
break;
case MS_MOO:
if (!mtmp->mpeaceful)
pline_msg = "bellows!";
else
pline_msg = "moos.";
break;
case MS_BOAST: /* giants */
if (!mtmp->mpeaceful) {
switch (rn2(4)) {