mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-05-16 12:35:05 +01:00
Delayed inheritance inheritors have their difficulty increased once they reach quest level.
This commit is contained in:
parent
4617b8045f
commit
bfa59a16ca
1 changed files with 1 additions and 1 deletions
|
@ -1915,7 +1915,7 @@ level_difficulty()
|
|||
else
|
||||
dpth = ((int) depth(&u.uz));
|
||||
|
||||
if(flags.descendant && !Role_if(PM_CONVICT) && !Role_if(PM_MADMAN))
|
||||
if(flags.descendant && !((Role_if(PM_CONVICT) || Role_if(PM_MADMAN)) && u.ulevel < 14))
|
||||
dpth += 10;
|
||||
|
||||
return max(1, dpth);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue