summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-29 15:00:48 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-29 15:00:48 +0000
commit9b19c10cdc05253f2393ca6c5873a94f54d34596 (patch)
tree8c2ea12b7e71cf6d83c59d3db3349d0dfc84e24d /crawl-ref/source/spells1.cc
parent08c0c17c168b193b376df4fca0622026d2f1b5c6 (diff)
downloadcrawl-ref-9b19c10cdc05253f2393ca6c5873a94f54d34596.tar.gz
crawl-ref-9b19c10cdc05253f2393ca6c5873a94f54d34596.zip
[1745278] Added missing period at end of confusing touch message.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1690 c06c8d41-db1a-0410-9941-cceddc491573
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);