summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 01:50:16 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 01:50:16 +0000
commit74f34f0df59f314a87ac714db36f0fc20e42191b (patch)
tree799defd311ce32a77308fd4ab63043a0a8b5153b /crawl-ref/source/beam.cc
parentfc8ac3868f47ca18ccbab91b8f406720a31f1bd3 (diff)
downloadcrawl-ref-74f34f0df59f314a87ac714db36f0fc20e42191b.tar.gz
crawl-ref-74f34f0df59f314a87ac714db36f0fc20e42191b.zip
Remove apparent debugging statement.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6383 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index ccc1cf730c..cb157040c2 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -4352,14 +4352,13 @@ static int _affect_monster(bolt &beam, monsters *mon, item_def *item)
if (stop_attack_prompt(mon, true, target))
{
- mpr("Test2");
beam.beam_stopped = true;
return (BEAM_STOP);
}
- if (beam.fr_count == 1 && !beam.dont_stop_fr)
- beam.dont_stop_fr = true;
- else
- beam.dont_stop_foe = true;
+ if (beam.fr_count == 1 && !beam.dont_stop_fr)
+ beam.dont_stop_fr = true;
+ else
+ beam.dont_stop_foe = true;
}
}