summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/overmap.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-06 13:02:14 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-06 14:43:39 +0100
commit2ce2d22a0c2ae0407359811fef347c5eee1263a1 (patch)
tree911fd05a2b8814c17e5ce2df92a0b55099c327d9 /crawl-ref/source/overmap.cc
parent8aaaca3d1c38a41d88b6dddf55fa48fd9aecb539 (diff)
downloadcrawl-ref-2ce2d22a0c2ae0407359811fef347c5eee1263a1.tar.gz
crawl-ref-2ce2d22a0c2ae0407359811fef347c5eee1263a1.zip
Remove redundant level_type check.
Diffstat (limited to 'crawl-ref/source/overmap.cc')
-rw-r--r--crawl-ref/source/overmap.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/crawl-ref/source/overmap.cc b/crawl-ref/source/overmap.cc
index cd928e8505..f2161dc56e 100644
--- a/crawl-ref/source/overmap.cc
+++ b/crawl-ref/source/overmap.cc
@@ -684,9 +684,6 @@ portal_type feature_to_portal( unsigned char feat )
// If player has seen any other thing; record it.
void _seen_other_thing( dungeon_feature_type which_thing, const coord_def& pos )
{
- if (you.level_type != LEVEL_DUNGEON) // Can't record in Abyss or Pan.
- return;
-
level_pos where(level_id::current(), pos);
switch (which_thing)