Merge branch 'NetHack-3.6.2'
This commit is contained in:
@@ -305,7 +305,7 @@ boolean verbose; /* give message(s) even when you can't see what happened */
|
||||
struct obj *mon_launcher = g.marcher ? MON_WEP(g.marcher) : NULL;
|
||||
|
||||
g.notonhead = (g.bhitpos.x != mtmp->mx || g.bhitpos.y != mtmp->my);
|
||||
ismimic = mtmp->m_ap_type && mtmp->m_ap_type != M_AP_MONSTER;
|
||||
ismimic = M_AP_TYPE(mtmp) && M_AP_TYPE(mtmp) != M_AP_MONSTER;
|
||||
vis = cansee(g.bhitpos.x, g.bhitpos.y);
|
||||
|
||||
tmp = 5 + find_mac(mtmp) + omon_adj(mtmp, otmp, FALSE);
|
||||
@@ -1065,8 +1065,8 @@ register struct monst *mtmp;
|
||||
|
||||
/* hero concealment usually trumps monst awareness of being lined up */
|
||||
if (Upolyd && rn2(25)
|
||||
&& (u.uundetected || (g.youmonst.m_ap_type != M_AP_NOTHING
|
||||
&& g.youmonst.m_ap_type != M_AP_MONSTER)))
|
||||
&& (u.uundetected || (U_AP_TYPE != M_AP_NOTHING
|
||||
&& U_AP_TYPE != M_AP_MONSTER)))
|
||||
return FALSE;
|
||||
|
||||
ignore_boulders = (throws_rocks(mtmp->data)
|
||||
|
||||
Reference in New Issue
Block a user