summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_feat.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-11 14:02:31 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-11 14:02:31 +0200
commit0c8f6b4214ac63ec9eb54968d21f38be997a9981 (patch)
tree3d4dfca181aa62497e73b759a6c9235d53f196f7 /crawl-ref/source/l_feat.cc
parent77587839e0e17de5b94c9a0431dd0c0692efa76a (diff)
downloadcrawl-ref-0c8f6b4214ac63ec9eb54968d21f38be997a9981.tar.gz
crawl-ref-0c8f6b4214ac63ec9eb54968d21f38be997a9981.zip
Drop the code for displaying/handling/etc secret doors.
Diffstat (limited to 'crawl-ref/source/l_feat.cc')
-rw-r--r--crawl-ref/source/l_feat.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/l_feat.cc b/crawl-ref/source/l_feat.cc
index 0376efba6a..feccefd731 100644
--- a/crawl-ref/source/l_feat.cc
+++ b/crawl-ref/source/l_feat.cc
@@ -36,8 +36,6 @@ FEATF(_feat_is_solid, feat_is_solid)
FEATF(_feat_has_solid_floor, feat_has_solid_floor)
FEATF(_feat_is_opaque, feat_is_opaque)
FEATF(_feat_is_door, feat_is_door)
-FEATF(_feat_is_closed_door, feat_is_closed_door)
-FEATF(_feat_is_secret_door, feat_is_secret_door)
FEATF(_feat_is_statue_or_idol, feat_is_statue_or_idol)
FEATF(_feat_is_rock, feat_is_rock)
FEATF(_feat_is_permarock, feat_is_permarock)
@@ -63,8 +61,6 @@ const struct luaL_reg feat_dlib[] =
{ "has_solid_floor", _feat_has_solid_floor },
{ "is_opaque", _feat_is_opaque },
{ "is_door", _feat_is_door },
-{ "is_closed_door", _feat_is_closed_door },
-{ "is_secret_door", _feat_is_secret_door },
{ "is_statue_or_idol", _feat_is_statue_or_idol },
{ "is_rock", _feat_is_rock },
{ "is_permarock", _feat_is_permarock },