summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/branch.cc2
-rw-r--r--crawl-ref/source/dungeon.cc2
2 files changed, 2 insertions, 2 deletions
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;
}
}