From 1c37881948d0880f83edeb7429819483766a0a81 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Thu, 5 Nov 2009 19:07:51 +1000 Subject: New monsters: golden eyes. Small, blinking, and fast, these eyes come in packs and are found natively in Slime (though somewhat rarely). Their confusion ability does check MR before passing, however, and can be completely avoided by having Clarity. --- crawl-ref/source/mon-util.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/mon-util.cc') diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc index f8fedade1a..52befdeb7f 100644 --- a/crawl-ref/source/mon-util.cc +++ b/crawl-ref/source/mon-util.cc @@ -2703,7 +2703,8 @@ bool mons_has_los_ability(int mclass) return (true); // These eyes only need LOS, as well. (The other eyes use spells.) - if (mclass == MONS_GIANT_EYEBALL || mclass == MONS_EYE_OF_DRAINING) + if (mclass == MONS_GIANT_EYEBALL || mclass == MONS_EYE_OF_DRAINING + || mclass == MONS_GOLDEN_EYE) return (true); // Although not using spells, these are exceedingly dangerous. -- cgit v1.2.3-54-g00ecf