summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/spells1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 57bcd040ee..2c0b92a1ee 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -360,7 +360,7 @@ void cast_chain_lightning( int powc )
// now check if the player is a target
dist = grid_distance( sx, sy, you.x_pos, you.y_pos );
- if (dist) // ie player was not the source
+ if (dist) // i.e., player was not the source
{
// distance randomized (as above)
dist += (random2(3) - 1);