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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 60a2747899..1abb45a423 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -357,7 +357,7 @@ void cast_chain_lightning( int powc )
}
}
- // now check if the player is a target:
+ // 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
@@ -410,7 +410,7 @@ void cast_chain_lightning( int powc )
beam.colour = LIGHTBLUE;
beam.damage = calc_dice( 5, 12 + powc * 2 / 3 );
- // Be kinder to the player
+ // Be kinder to the player.
if (tx == you.x_pos && ty == you.y_pos)
{
if (!(beam.damage.num /= 2))