summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-05 19:07:51 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-05 19:20:31 +1000
commit313465bf23382559f7c26c63849b64266c8d939f (patch)
treecc41a45ded0ce3d88828d34732bac6cd1f72f54e /crawl-ref
parent1c37881948d0880f83edeb7429819483766a0a81 (diff)
downloadcrawl-ref-313465bf23382559f7c26c63849b64266c8d939f.tar.gz
crawl-ref-313465bf23382559f7c26c63849b64266c8d939f.zip
New monsters: golden eyes, with a confuse ability.
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.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/tags.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 8fa8ceaef9..a11c8676eb 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -2234,16 +2234,6 @@ static void unmarshall_monster(reader &th, monsters &m)
m.set_ghost(unmarshallGhost(th, _tag_minor_version));
m.check_speed();
-
- // XXX: Changed MONS_NO_MONSTER from NUM_MONSTERS + 1 to 1000.
- // This is a temporary hack, remove when the following compile
- // time assert fails.
- COMPILE_CHECK(NUM_MONSTERS == 472, c1);
-
- if (m.type == (NUM_MONSTERS + 1))
- m.type = MONS_NO_MONSTER;
- if (m.base_monster == (NUM_MONSTERS + 1))
- m.base_monster = MONS_NO_MONSTER;
}
static void tag_read_level_monsters(reader &th, char minorVersion)