summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/xom.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index a6c707708b..878c1e04da 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -397,8 +397,7 @@ bool there_are_monsters_nearby()
{
for ( int x = xstart; x < xend; ++x )
{
- // If you can see an unfriendly monster, then you feel
- // unsafe.
+ // If you can see a monster, then it's nearby.
if ( see_grid(x,y) )
{
const int targ_monst = mgrd[x][y];