Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/monmove.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ onscary(coordxy x, coordxy y, struct monst *mtmp)
* Creatures who don't (or can't) fear a written Elbereth:
* all the above plus shopkeepers (even if poly'd into non-human),
* vault guards (also even if poly'd), blind or peaceful monsters,
* humans and elves, and minotaurs.
* humans and elves.
*
* If the player isn't actually on the square OR the player's image
* isn't displaced to the square, no protection is being granted.
Expand All @@ -298,7 +298,6 @@ onscary(coordxy x, coordxy y, struct monst *mtmp)
|| (ep->guardobjects && vobj_at(x, y)))
&& !(mtmp->isshk || mtmp->isgd || !mtmp->mcansee
|| mtmp->mpeaceful
|| mtmp->data == &mons[PM_MINOTAUR]
|| Inhell || In_endgame(&u.uz)));
}

Expand Down