From a2285dbfa468cca31b2d724db38ccb102c487675 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Mon, 7 Dec 2009 18:51:48 +1000 Subject: Let uniques spawn in Orc. (dpeg) At the very least, give control of uniques spawning in Orc over to unique.des. --- crawl-ref/source/branch.cc | 2 +- crawl-ref/source/dungeon.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source') diff --git a/crawl-ref/source/branch.cc b/crawl-ref/source/branch.cc index a8ed8355f6..f007aec2e4 100644 --- a/crawl-ref/source/branch.cc +++ b/crawl-ref/source/branch.cc @@ -166,7 +166,7 @@ Branch branches[] = { DNGN_ENTER_ORCISH_MINES, DNGN_RETURN_FROM_ORCISH_MINES, "Orcish Mines", "the Orcish Mines", "Orc", NULL, - true, false, BROWN, BROWN, + true, true, BROWN, BROWN, mons_mineorc_rare, mons_mineorc_level, NULL, NULL, NULL, NULL, 20, 'O', false, false }, diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc index ab10abb259..b13f745005 100644 --- a/crawl-ref/source/dungeon.cc +++ b/crawl-ref/source/dungeon.cc @@ -3174,7 +3174,7 @@ static void _place_traps(int level_number) // If we get shaft a second time, turn it into an alarm trap, or // if we got nothing. - if (ts.type == TRAP_SHAFT || ts.type>= NUM_TRAPS) + if (ts.type == TRAP_SHAFT || ts.type >= NUM_TRAPS) ts.type = TRAP_ALARM; } } -- cgit v1.2.3-54-g00ecf