Skip to content

Commit

Permalink
Remove the difficulty effect from wishing - this is already taken car…
Browse files Browse the repository at this point in the history
…e of by negative luck.
  • Loading branch information
elunna committed Oct 15, 2023
1 parent 2d17cab commit 76317be
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/dungeon.c
Original file line number Diff line number Diff line change
Expand Up @@ -1679,14 +1679,8 @@ level_difficulty()
#endif /*0*/
}
if ((uamul && uamul->otyp == AMULET_OF_DANGER)
|| using_oprop(ITEM_DANGER)) {
|| using_oprop(ITEM_DANGER))
res += 15;
}
/* Wishes increase difficulty (unless fuzzing) */
else if (u.uconduct.wishes > 1 && !iflags.debug_fuzzer) {
int bump = (u.uconduct.wishes - 1) * 2;
res += (bump > 15) ? 15 : bump;
}
return (xchar) res;
}

Expand Down

0 comments on commit 76317be

Please sign in to comment.