summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ouch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ouch.cc')
-rw-r--r--crawl-ref/source/ouch.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index 34f8bc736c..2813101bbe 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -551,6 +551,10 @@ bool expose_items_to_element(beam_type flavour, const coord_def& where,
if (target_class == OBJ_UNASSIGNED)
return (false);
+ // Beams fly *over* water and lava.
+ if (grd(where) == DNGN_LAVA || grd(where) == DNGN_DEEP_WATER)
+ return (false);
+
for (stack_iterator si(where); si; ++si)
{
if (!si->is_valid())