summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-09 14:46:00 +0200
committerAdam Borowski <kilobyte@angband.pl>2009-10-09 14:46:00 +0200
commit6fb64ab3ac64b81a0891bdbbdd5c0b5d2d9b933c (patch)
tree890a713803c73b7412c3dc3192f40998a827ec0f /crawl-ref/source/mapdef.cc
parent477b8798b39a01bf4a73697eefe0ae131a12d47d (diff)
downloadcrawl-ref-6fb64ab3ac64b81a0891bdbbdd5c0b5d2d9b933c.tar.gz
crawl-ref-6fb64ab3ac64b81a0891bdbbdd5c0b5d2d9b933c.zip
Trees -- a new wall type, can be seen through (2nd square blocks LOS).
Available as 't' for vault builders. Can be ignited using wands of fire, but the fire can't be controlled.
Diffstat (limited to 'crawl-ref/source/mapdef.cc')
-rw-r--r--crawl-ref/source/mapdef.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index db17585693..49ea350a1a 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -844,7 +844,7 @@ int map_lines::glyph(const coord_def &c) const
bool map_lines::is_solid(int gly) const
{
- return (gly == 'x' || gly == 'c' || gly == 'b' || gly == 'v');
+ return (gly == 'x' || gly == 'c' || gly == 'b' || gly == 'v' || gly == 't');
}
void map_lines::check_borders()