summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-09 13:09:30 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-09 13:09:30 +0000
commit8348fa729646872032b8231fee14d5dd35a3451a (patch)
treef7e44728854bda2459451f222c660e25b957b714 /crawl-ref
parentbc63643a6c8bdc583694356f559f09b356d2c1c6 (diff)
downloadcrawl-ref-8348fa729646872032b8231fee14d5dd35a3451a.tar.gz
crawl-ref-8348fa729646872032b8231fee14d5dd35a3451a.zip
Experimental change in monster awareness messages (Zooko).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1818 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/direct.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index 2ebaaca0f5..bd0010ae26 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1629,7 +1629,7 @@ static void describe_cell(int mx, int my)
{
if (menv[i].behaviour == BEH_SLEEP)
{
- mprf("%s doesn't appear to have noticed you.",
+ mprf("%s appears to be resting.",
mons_pronoun(menv[i].type, PRONOUN_CAP));
}
// Applies to both friendlies and hostiles
@@ -1644,7 +1644,7 @@ static void describe_cell(int mx, int my)
// special case: batty monsters get set to BEH_WANDER as
// part of their special behaviour.
if (!testbits(menv[i].flags, MF_BATTY))
- mprf("%s doesn't appear to be interested in you.",
+ mprf("%s doesn't appear to have noticed you.",
mons_pronoun(menv[i].type, PRONOUN_CAP));
}
}