summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/debug.cc')
-rw-r--r--crawl-ref/source/debug.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index b3dba47d50..f563134ecf 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -5197,7 +5197,7 @@ static void _debug_destroy_doors()
for (int x = 0; x < GXM; ++x)
{
const dungeon_feature_type feat = grd[x][y];
- if (feat == DNGN_CLOSED_DOOR || feat == DNGN_SECRET_DOOR)
+ if (feat == DNGN_SECRET_DOOR || grid_is_closed_door(feat))
grd[x][y] = DNGN_FLOOR;
}
}
@@ -6959,6 +6959,7 @@ static bool mg_do_build_level(int niters)
switch (grd[x][y])
{
case DNGN_SECRET_DOOR:
+ case DNGN_DETECTED_SECRET_DOOR: // paranoia
grd[x][y] = DNGN_CLOSED_DOOR;
break;
default: