From 378f6524181a2e443a59b10d79ccc41586a9b55c Mon Sep 17 00:00:00 2001 From: dshaligram Date: Sun, 31 Dec 2006 09:55:19 +0000 Subject: Water/lava creatures should not be generated in the temple. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.1.7@753 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/dungeon.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref') diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc index 8944413aef..941dea97c9 100644 --- a/crawl-ref/source/dungeon.cc +++ b/crawl-ref/source/dungeon.cc @@ -4533,7 +4533,8 @@ static void builder_monsters(int level_number, char level_type, int mon_wanted) int aq_creatures; int swimming_things[4]; - if (level_type == LEVEL_PANDEMONIUM) + if (level_type == LEVEL_PANDEMONIUM + || player_in_branch(BRANCH_ECUMENICAL_TEMPLE)) return; for (i = 0; i < mon_wanted; i++) -- cgit v1.2.3-54-g00ecf