summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-22 20:12:04 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-22 20:12:04 +0000
commit99be0be3c7f5bd4fa41cde1bf7f4f8b4c9569efc (patch)
treedf9ae0845d78719ec8c1fd2033ae1224a80ed3f3 /crawl-ref/source/spells4.cc
parentd6cdd1b6e2bd4bcd51221ef3113a10bde13867ba (diff)
downloadcrawl-ref-99be0be3c7f5bd4fa41cde1bf7f4f8b4c9569efc.tar.gz
crawl-ref-99be0be3c7f5bd4fa41cde1bf7f4f8b4c9569efc.zip
Fix ?immolation not being autoID'd upon reading.
Fix ?uselessness not using the misc. descriptions. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6051 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index a8b525b6a4..d232ed51b9 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -2065,11 +2065,12 @@ void cast_fragmentation(int pow) // jmf: ripped idea from airstrike
// Permarock and floor are unaffected -- bwr
//
case DNGN_PERMAROCK_WALL:
+ case DNGN_CLEAR_PERMAROCK_WALL:
case DNGN_FLOOR:
explode = false;
mprf("%s seems to be unnaturally hard.",
- (grid == DNGN_PERMAROCK_WALL) ? "That wall"
- : "The dungeon floor");
+ (grid == DNGN_FLOOR) ? "The dungeon floor"
+ : "That wall");
break;
default: