Skip to content

Commit

Permalink
Vampirics never start with rings of poison resistance. They start wit…
Browse files Browse the repository at this point in the history
…h poison resistance from XP 1.
  • Loading branch information
elunna committed Sep 24, 2023
1 parent 46ce69e commit 7c0c6bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/u_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,8 @@ register struct trobj *origtrop;
/* vampirics start with regeneration */
|| (otyp == RIN_REGENERATION && Race_if(PM_VAMPIRIC))
/* orcs start with poison resistance */
|| (otyp == RIN_POISON_RESISTANCE && Race_if(PM_ORC))
|| (otyp == RIN_POISON_RESISTANCE
&& (Race_if(PM_ORC) || Race_if(PM_VAMPIRIC)))
/* Monks don't use weapons */
|| (otyp == SCR_ENCHANT_WEAPON && Role_if(PM_MONK))
/* wizard patch -- they already have one */
Expand Down

0 comments on commit 7c0c6bc

Please sign in to comment.