summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-tornado.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-03-25 04:39:26 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-03-29 23:50:09 -0400
commit432e2bbe21079023d413ba9d1e894a1baae43eba (patch)
tree7cf792358cb5a3f4f63d283aa1e074463b5c729c /crawl-ref/source/spl-tornado.cc
parentf57b90b356425e982ac999b0bf2c52cd827675b3 (diff)
downloadcrawl-ref-432e2bbe21079023d413ba9d1e894a1baae43eba.tar.gz
crawl-ref-432e2bbe21079023d413ba9d1e894a1baae43eba.zip
Remove mangroves from vaults.
There may still be some vaults that rely on trees to act like glass.
Diffstat (limited to 'crawl-ref/source/spl-tornado.cc')
-rw-r--r--crawl-ref/source/spl-tornado.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-tornado.cc b/crawl-ref/source/spl-tornado.cc
index e84b488c0c..eb49d25a22 100644
--- a/crawl-ref/source/spl-tornado.cc
+++ b/crawl-ref/source/spl-tornado.cc
@@ -26,7 +26,7 @@ static bool _airtight(coord_def c)
// simplicistic check allows moving people through trees which is no good
// either.
- // return grd(c) <= DNGN_MAXWALL && grd(c) != DNGN_MANGROVE;
+ // return grd(c) <= DNGN_MAXWALL && grd(c);
return grd(c) <= DNGN_GRATE;
}