summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-07 21:14:32 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-07 21:14:32 +0000
commita98e607b10c39295305ac00d05d251a6f79ee009 (patch)
tree3afed977e02384bb4da84fe42705c35a71919735 /crawl-ref
parent099afa1e2281213d03ec2201fddbe57e77a6cf8c (diff)
downloadcrawl-ref-a98e607b10c39295305ac00d05d251a6f79ee009.tar.gz
crawl-ref-a98e607b10c39295305ac00d05d251a6f79ee009.zip
More comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7405 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/beam.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 4852d7564b..14eee73a7c 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -2458,7 +2458,6 @@ void sticky_flame_monster(int mn, kill_category who, int levels)
}
}
-//
// Used by monsters in "planning" which spell to cast. Fires off a "tracer"
// which tells the monster what it'll hit if it breathes/casts etc.
//
@@ -2470,7 +2469,6 @@ void sticky_flame_monster(int mn, kill_category who, int levels)
//
// Note that beam properties must be set, as the tracer will take them
// into account, as well as the monster's intelligence.
-//
void fire_tracer(const monsters *monster, bolt &pbolt, bool explode_only)
{
// Don't fiddle with any input parameters other than tracer stuff!
@@ -4441,7 +4439,7 @@ static int _affect_monster(bolt &beam, monsters *mon, item_def *item)
if (hurt_final > 0 || !mons_wont_attack(mon) || !YOU_KILL(beam.thrower))
behaviour_event(mon, ME_ANNOY, _beam_source(beam));
- // sticky flame
+ // Sticky flame.
if (beam.name == "sticky flame")
{
int levels = std::min(4, 1 + random2(hurt_final) / 2);