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.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 014e736af6..724d2bc037 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -1034,7 +1034,8 @@ void cast_ring_of_flames(int power)
void cast_confusing_touch(int power)
{
msg::stream << "Your " << your_hand(true) << " begin to glow "
- << (you.duration[DUR_CONFUSING_TOUCH] ? "brighter" : "red") << std::endl;
+ << (you.duration[DUR_CONFUSING_TOUCH] ? "brighter" : "red")
+ << "." << std::endl;
you.duration[DUR_CONFUSING_TOUCH] += 5 + (random2(power) / 5);