summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-13 16:44:12 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-13 16:44:12 +0000
commitb06ace6b63b640abd3c12cc7a51fee1d904af02f (patch)
treec08b918ce82f8461e2dee8cd972cb7b38c895bac /crawl-ref/source/spl-cast.cc
parent437cb6d846ee8c08acb9af21ecd2f61930a68433 (diff)
downloadcrawl-ref-b06ace6b63b640abd3c12cc7a51fee1d904af02f.tar.gz
crawl-ref-b06ace6b63b640abd3c12cc7a51fee1d904af02f.zip
Put in more() when casting spells while silenced, following 1699991
(which I agree with.) Can be reverted if anyone feels strongly about it. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1298 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 76ea339b12..6b08002f17 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -595,6 +595,7 @@ bool cast_a_spell(void)
if (silenced(you.x_pos, you.y_pos))
{
mpr("You cannot cast spells when silenced!");
+ more();
return (false);
}