summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 2f798cadf1..b32934ed84 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -334,7 +334,8 @@ bool _lightning_los(const coord_def& source, const coord_def& target)
{
// XXX: currently bounded by circular LOS radius;
// XXX: adapt opacity -- allow passing clouds.
- return (exists_ray(source, target, opc_solid, bds_maxlos));
+ return (exists_ray(source, target, opc_solid,
+ circle_def(LOS_MAX_RADIUS, C_ROUND)));
}
void cast_chain_lightning(int pow, const actor *caster)