diff --git a/src/allmain.c b/src/allmain.c index de31c6420..cefe796b8 100644 --- a/src/allmain.c +++ b/src/allmain.c @@ -1082,7 +1082,7 @@ newgame() { int i; /* Add this flag here to activate rr fuzzing */ - /* iflags.debug_fuzzer = 1; */ + iflags.debug_fuzzer = 1; #ifdef MFLOPPY gameDiskPrompt(); diff --git a/src/dungeon.c b/src/dungeon.c index 97d54daee..f60b7eb29 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -1682,8 +1682,10 @@ level_difficulty() res += 15; } /* Wishes increase difficulty */ - if (u.uconduct.wishes > 1) - res += (int) (u.uconduct.wishes - 1) * 4; + else if (u.uconduct.wishes > 1) { + int bump = (u.uconduct.wishes - 1) * 4; + res += (bump > 15) ? 15 : bump; + } return (xchar) res; }