mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-08-13 16:11:41 +01:00
Bring Center of All's peace minded rules in line with his insight and endgame rules
This commit is contained in:
parent
01823a169f
commit
6854259e5f
1 changed files with 7 additions and 1 deletions
|
@ -15983,7 +15983,13 @@ register struct permonst *ptr;
|
|||
|
||||
if(Race_if(PM_CLOCKWORK_AUTOMATON) && (mndx == PM_TINKER_GNOME || mndx == PM_HOOLOOVOO) ) return TRUE;
|
||||
|
||||
if(mndx == PM_CENTER_OF_ALL && !u.uevent.sum_entered ) return TRUE;
|
||||
if(mndx == PM_CENTER_OF_ALL){
|
||||
if(In_endgame(&u.uz) || u.uinsight > 8)
|
||||
return FALSE;
|
||||
else if(!u.uevent.sum_entered)
|
||||
return TRUE;
|
||||
//else fall through
|
||||
}
|
||||
|
||||
if(goat_monster(ptr) && u.shubbie_atten && !godlist[GOD_THE_BLACK_MOTHER].anger) return TRUE;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue