summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shout.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-08-30 22:58:24 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-08-31 00:09:03 +0200
commit57aec7d2a0ae1095fb1babd8f0fcc276927bf8e5 (patch)
tree49101ac1f89ecfc1dfd662ff9dd1af5d2e96f003 /crawl-ref/source/shout.cc
parent4a749203263be27ef869e3921ea9628be4b04cfc (diff)
downloadcrawl-ref-57aec7d2a0ae1095fb1babd8f0fcc276927bf8e5.tar.gz
crawl-ref-57aec7d2a0ae1095fb1babd8f0fcc276927bf8e5.zip
Runed doors.
They're meant to stop autoexplore, and maybe request a confirmation for being opened. This is not yet implemented, but we can use them for converting secret doors that were used for marking a place as interesting.
Diffstat (limited to 'crawl-ref/source/shout.cc')
-rw-r--r--crawl-ref/source/shout.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/shout.cc b/crawl-ref/source/shout.cc
index 1769f47c57..be14eee1b0 100644
--- a/crawl-ref/source/shout.cc
+++ b/crawl-ref/source/shout.cc
@@ -714,6 +714,7 @@ static int _noise_attenuation_millis(const coord_def &pos)
{
// Closed doors are excellent at cutting off sound.
case DNGN_CLOSED_DOOR:
+ case DNGN_RUNED_DOOR:
return BASE_NOISE_ATTENUATION_MILLIS * 8;
case DNGN_TREE:
case DNGN_MANGROVE: