Skip to content

Commit

Permalink
Slightly raised the chances of players reviving when killed by zombies.
Browse files Browse the repository at this point in the history
From 1 in 8 to 1 in 6. Might be a bit of fun for the cheesy unavoidable Z illness.
  • Loading branch information
elunna committed Sep 23, 2023
1 parent fee9baf commit 70b66d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/end.c
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ int how;
|| (mon_nm == PM_REVENANT && !rn2(8))
|| (mon_nm == PM_SPECTRE && !rn2(16))
|| (mons[mon_nm].mlet == S_MUMMY && !rn2(8))
|| (mons[mon_nm].mlet == S_ZOMBIE && !rn2(8))) {
|| (mons[mon_nm].mlet == S_ZOMBIE && !rn2(6))) {
u.ugrave_arise = NON_PM;

if (mon_nm != PM_GREEN_SLIME) {
Expand Down

0 comments on commit 70b66d2

Please sign in to comment.