From 9b59974ebf1e2daca01de00f71de1d6727c958ac Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 27 Nov 2009 15:05:49 -0600 Subject: Comment fixes. --- crawl-ref/source/beam.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/beam.cc') diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc index f0a8a7cf81..b33169f852 100644 --- a/crawl-ref/source/beam.cc +++ b/crawl-ref/source/beam.cc @@ -105,7 +105,7 @@ const tracer_info& tracer_info::operator+=(const tracer_info &other) bool bolt::is_blockable() const { - // BEAM_ELECTRICITY is added here because chain lighting is not + // BEAM_ELECTRICITY is added here because chain lightning is not // a true beam (stops at the first target it gets to and redirects // from there)... but we don't want it shield blockable. return (!is_beam && !is_explosion && flavour != BEAM_ELECTRICITY); @@ -646,7 +646,7 @@ const zap_info zap_data[] = { true, true, false, - 5 // XXX: Quiter because it's poison? + 5 // XXX: Quieter because it's poison? }, { @@ -1780,7 +1780,7 @@ void bolt::fire_wall_effect() { dungeon_feature_type feat; // Fire only affects wax walls and trees. - if ((feat=grd(pos())) != DNGN_WAX_WALL && (feat != DNGN_TREES)) + if ((feat = grd(pos())) != DNGN_WAX_WALL && feat != DNGN_TREES) { finish_beam(); return; -- cgit v1.2.3-54-g00ecf