mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-05-08 08:15:18 +01:00
Bugfix: Dread Seraphs pray
My test logic is backwards. My test logic is ALWAYS backwards.
This commit is contained in:
parent
2b46cce3ab
commit
8dfddb428f
1 changed files with 1 additions and 1 deletions
|
@ -1137,7 +1137,7 @@ asGuardian:
|
|||
case MS_DREAD:{
|
||||
struct monst *tmpm;
|
||||
int ix, iy;
|
||||
if(mtmp->mvar_dreadPrayer_cooldown >= moves && !mtmp->mdoubt && (
|
||||
if(mtmp->mvar_dreadPrayer_cooldown < moves && !mtmp->mdoubt && (
|
||||
mtmp->mhp < mtmp->mhpmax/4 || mtmp->mcrazed
|
||||
)){
|
||||
mtmp->mvar_dreadPrayer_cooldown = moves + rnz(350);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue