From 6fb64ab3ac64b81a0891bdbbdd5c0b5d2d9b933c Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Fri, 9 Oct 2009 14:46:00 +0200 Subject: 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. --- crawl-ref/source/mapdef.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/mapdef.cc') 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() -- cgit v1.2.3-54-g00ecf