summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index a12cc8d63d..22b55c1f0a 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -4287,7 +4287,9 @@ bool vehumet_supports_spell(spell_type spell)
{
if (spell_typematch(spell, SPTYP_CONJURATION | SPTYP_SUMMONING))
return (true);
- if (spell == SPELL_SHATTER || spell == SPELL_FRAGMENTATION)
+ if (spell == SPELL_SHATTER
+ || spell == SPELL_FRAGMENTATION
+ || spell == SPELL_SANDBLAST)
return (true);
return (false);