1
0
Fork 0
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:
chris 2024-02-23 18:28:48 -05:00
parent 4617b8045f
commit bfa59a16ca

View file

@ -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);