Skip to content

Commit

Permalink
Fix the monster lookup info for monsters that can be fed-on by vampir…
Browse files Browse the repository at this point in the history
…es (reported by hothraxxa).
  • Loading branch information
elunna committed Sep 25, 2023
1 parent c9157d9 commit 68234a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pager.c
Original file line number Diff line number Diff line change
Expand Up @@ -936,9 +936,6 @@ struct permonst * pm;
} else if (bigmonst(pm)) {
APPENDC(TRUE, "big");
}
if (has_blood(pm)) {
MONPUTSTR("May be drunk by vampiric monsters.");
}
}

/* inherent characteristics: "Monster is X." */
Expand Down Expand Up @@ -1025,6 +1022,9 @@ struct permonst * pm;
else if (vegetarian(pm))
MONPUTSTR("May be eaten by vegetarians.");
}
if (has_blood(pm)) {
MONPUTSTR("May be drunk by vampiric monsters.");
}
if (pm == &mons[PM_HECATONCHEIRE])
MONPUTSTR("Attacks up to 100 times.");
if (pm == &mons[PM_HYDRA])
Expand Down

0 comments on commit 68234a4

Please sign in to comment.