summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-act.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-act.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-act.cc')
-rw-r--r--crawl-ref/source/mon-act.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-act.cc b/crawl-ref/source/mon-act.cc
index f9202eb3c0..f0b1ed437c 100644
--- a/crawl-ref/source/mon-act.cc
+++ b/crawl-ref/source/mon-act.cc
@@ -1810,11 +1810,8 @@ static void _pre_monster_move(monster* mons)
// Memory is decremented here for a reason -- we only want it
// decrementing once per monster "move".
- if (mons->foe_memory > 0 && !you.penance[GOD_ASHENZARI]
- && !mons_class_flag(mons->type, M_VIGILANT))
- {
+ if (mons->foe_memory > 0 && !you.penance[GOD_ASHENZARI])
mons->foe_memory -= you.time_taken;
- }
// Otherwise there are potential problems with summonings.
if (mons->type == MONS_GLOWING_SHAPESHIFTER)