summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-behv.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-01 22:00:39 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-01 22:09:15 -0400
commitf01764b7ac2b8bb699aceceab283f893f6856a73 (patch)
treef645e8ee62872d244269f9feb264a8390f4ef937 /crawl-ref/source/mon-behv.cc
parent2cfac19f2d24bf1f972a09f07f51028c29120b94 (diff)
downloadcrawl-ref-f01764b7ac2b8bb699aceceab283f893f6856a73.tar.gz
crawl-ref-f01764b7ac2b8bb699aceceab283f893f6856a73.zip
Remove M_VIGILANT
It's unused now that curse skulls are stationary again. This reverts commit e381e79d48aaf3bf1e770f58b6abfcf0817f2b81. This reverts commit 5a745abeb842ba05116320a397ba05de73a94303.
Diffstat (limited to 'crawl-ref/source/mon-behv.cc')
-rw-r--r--crawl-ref/source/mon-behv.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/mon-behv.cc b/crawl-ref/source/mon-behv.cc
index 7957f8c950..1cf265458d 100644
--- a/crawl-ref/source/mon-behv.cc
+++ b/crawl-ref/source/mon-behv.cc
@@ -620,9 +620,7 @@ void handle_behaviour(monster* mon)
else
{
if (x_chance_in_y(50, you.stealth())
- || you.penance[GOD_ASHENZARI] && coinflip()
- || mons_class_flag(mon->type, M_VIGILANT)
- && !one_chance_in(3))
+ || you.penance[GOD_ASHENZARI] && coinflip())
{
mon->target = you.pos();
}