summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells4.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index eea4f514e8..cfee0b35f8 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -902,14 +902,11 @@ bool _feat_is_passwallable(dungeon_feature_type feat)
{
// Irony: you can passwall through a secret door but not a door.
// Worked stone walls are out, they're not diggable and
- // are used for impassable walls... I'm not sure we should
- // even allow statues (should be contiguous rock). -- bwr
+ // are used for impassable walls...
switch (feat)
{
case DNGN_ROCK_WALL:
case DNGN_CLEAR_ROCK_WALL:
- case DNGN_ORCISH_IDOL:
- case DNGN_GRANITE_STATUE:
case DNGN_SECRET_DOOR:
return (true);
default: