Skip to content

Commit

Permalink
In addition to vampire mages - fire vampires, star vampires, and nosf…
Browse files Browse the repository at this point in the history
…eratu can't spawn in the Mines End catacombs.
  • Loading branch information
elunna committed Nov 8, 2023
1 parent 7512bc3 commit 0008cb8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/makemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -3874,7 +3874,11 @@ int mndx, mvflagsmask, genomask;
if (!Role_if(PM_INFIDEL)
&& (ptr == &mons[PM_AGENT] || ptr == &mons[PM_CHAMPION]))
return FALSE;
if (Is_mineend_level(&u.uz) && ptr == &mons[PM_VAMPIRE_MAGE])
if (Is_mineend_level(&u.uz)
&& (ptr == &mons[PM_VAMPIRE_MAGE]
|| ptr == &mons[PM_FIRE_VAMPIRE]
|| ptr == &mons[PM_NOSFERATU]
|| ptr == &mons[PM_STAR_VAMPIRE]))
return FALSE;
if (In_mines(&u.uz)
&& (ptr == &mons[PM_ALHOON]
Expand Down

0 comments on commit 0008cb8

Please sign in to comment.