summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-proclayouts.cc
diff options
context:
space:
mode:
authorRichard Soderberg <rsoderberg@gmail.com>2014-04-22 16:09:50 -0700
committerNeil Moore <neil@s-z.org>2014-04-22 19:29:54 -0400
commit2251764b3164a88415900370978f2551a6cc2666 (patch)
treefebc30433cd2eb10aa705805109659115075b019 /crawl-ref/source/dgn-proclayouts.cc
parentd40860805085bd8d762d348ae9b6a9a031ff0316 (diff)
downloadcrawl-ref-2251764b3164a88415900370978f2551a6cc2666.tar.gz
crawl-ref-2251764b3164a88415900370978f2551a6cc2666.zip
dgn-proclayouts.cc: fix DNGN_SLIMY_WALL, DNGN_UNSEEN switch fallthroughs
Diffstat (limited to 'crawl-ref/source/dgn-proclayouts.cc')
-rw-r--r--crawl-ref/source/dgn-proclayouts.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/dgn-proclayouts.cc b/crawl-ref/source/dgn-proclayouts.cc
index dd4a5d137a..0b99f43574 100644
--- a/crawl-ref/source/dgn-proclayouts.cc
+++ b/crawl-ref/source/dgn-proclayouts.cc
@@ -207,8 +207,10 @@ dungeon_feature_type sanitize_feature(dungeon_feature_type feature, bool strict)
break;
case DNGN_SLIMY_WALL:
feature = DNGN_GREEN_CRYSTAL_WALL;
+ break;
case DNGN_UNSEEN:
feature = DNGN_FLOOR;
+ break;
default:
// handle more terrain types.
break;