summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-15 14:12:39 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-15 14:12:39 +0000
commited15698b38cd638552f6a0a12e0ddceef57c9e07 (patch)
tree6c5a7a7346f5083886859a4e8a552e8121b39c85 /crawl-ref/source/monspeak.cc
parentd3c9ed21e760065a2faad5b371efdccf5fdace78 (diff)
downloadcrawl-ref-ed15698b38cd638552f6a0a12e0ddceef57c9e07.tar.gz
crawl-ref-ed15698b38cd638552f6a0a12e0ddceef57c9e07.zip
Corona overrides invisibility. To check if something is *really* invisible, use
foo.invisible(), not foo.has_ench(ENCH_INVIS) or foo.duration[DUR_INVIS]. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1874 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monspeak.cc')
-rw-r--r--crawl-ref/source/monspeak.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/monspeak.cc b/crawl-ref/source/monspeak.cc
index a0441ea42c..6a4077704a 100644
--- a/crawl-ref/source/monspeak.cc
+++ b/crawl-ref/source/monspeak.cc
@@ -159,7 +159,7 @@ bool mons_speaks(const monsters *monster)
const std::string m_name = monster->name(DESC_CAP_THE);
strcpy(info, m_name.c_str());
- if (monster->has_ench(ENCH_INVIS))
+ if (monster->invisible())
return false;
// invisible monster tries to remain unnoticed