summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index ec592b478c..bf48e44b0a 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -84,6 +84,13 @@ void tracer_info::reset()
const tracer_info& tracer_info::operator+=(const tracer_info &other)
{
+ count += other.count;
+ power += other.power;
+ hurt += other.hurt;
+ helped += other.helped;
+
+ dont_stop = dont_stop || other.dont_stop;
+
return (*this);
}