summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-23 10:41:10 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-23 10:41:10 +0000
commit9f2e3b0645145749d8cb550a7b8df9abb91b5c10 (patch)
treed8dbf0a131c2b24253afb81408ede45409ca9a1f /crawl-ref/source/spells2.cc
parentc91a4805805c06664b965290541ca3eb98909c15 (diff)
downloadcrawl-ref-9f2e3b0645145749d8cb550a7b8df9abb91b5c10.tar.gz
crawl-ref-9f2e3b0645145749d8cb550a7b8df9abb91b5c10.zip
Fix 2024087: @_generic_orc_speech@.
Fix 2024560: Selective Amnesia crash. Fix 2024701: claws/ankus not being handled in the weapon options. Implement 2025076: give an indication of monsters seeing/sensing invisible in their description. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6638 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 47101e47e0..2736a57266 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -681,9 +681,11 @@ void cast_toxic_radiance(void)
if (static_cast<int>(message.length()) < get_number_of_cols() - 2)
mpr(message.c_str());
else
+ {
// Exclamation mark to suggest that a lot of creatures were
// affected.
mpr("The monsters around you are poisoned!");
+ }
}
}