summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_feat.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-04-06 21:53:14 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-04-07 00:28:49 +0200
commite4ce5015b48f43e696640d2f7d95dd959086cc2e (patch)
tree31eaa34c3c50992d541a9a82b47ee14265b8af15 /crawl-ref/source/l_feat.cc
parentf9078c86f36ddad9e59edcd7e831dbc8867afee7 (diff)
downloadcrawl-ref-e4ce5015b48f43e696640d2f7d95dd959086cc2e.tar.gz
crawl-ref-e4ce5015b48f43e696640d2f7d95dd959086cc2e.zip
Simplify closing portals during the Orb run; handle portals in Pan.
How can you get into Pan with the orb, is another question... the old code did try to handle them but assumed only portals there are exits through Pan.
Diffstat (limited to 'crawl-ref/source/l_feat.cc')
-rw-r--r--crawl-ref/source/l_feat.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/l_feat.cc b/crawl-ref/source/l_feat.cc
index 8f373ffd42..0e3ea7c481 100644
--- a/crawl-ref/source/l_feat.cc
+++ b/crawl-ref/source/l_feat.cc
@@ -45,7 +45,6 @@ FEATF(_feat_is_stone_stair, feat_is_stone_stair)
FEATF(_feat_is_staircase, feat_is_staircase)
FEATF(_feat_is_escape_hatch, feat_is_escape_hatch)
FEATF(_feat_is_trap, feat_is_trap)
-FEATF(_feat_is_sealable_portal, feat_sealable_portal)
FEATF(_feat_is_portal, feat_is_portal)
FEATF(_feat_is_stair, feat_is_stair)
FEATF(_feat_is_travelable_stair, feat_is_travelable_stair)
@@ -73,7 +72,6 @@ const struct luaL_reg feat_dlib[] =
{ "is_staircase", _feat_is_staircase },
{ "is_escape_hatch", _feat_is_escape_hatch },
{ "is_trap", _feat_is_trap },
-{ "is_sealable_portal", _feat_is_sealable_portal },
{ "is_portal", _feat_is_portal },
{ "is_stair", _feat_is_stair },
{ "is_travelable_stair", _feat_is_travelable_stair },