summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-20 21:58:56 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-20 21:58:56 +0000
commit1cae4690f8dbb3d9218b9c1672410271a23e24d1 (patch)
treed6cb73afdc18a134faea52afe3fe9e01949fca66 /crawl-ref/source/fight.cc
parent15c1ed6a82bb52f42dc53e1d716e66dc8a257b96 (diff)
downloadcrawl-ref-1cae4690f8dbb3d9218b9c1672410271a23e24d1.tar.gz
crawl-ref-1cae4690f8dbb3d9218b9c1672410271a23e24d1.zip
Add consistency fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8632 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index fdddab382c..cf96b82527 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2237,13 +2237,13 @@ void melee_attack::chaos_affects_defender()
if (see_grid(defender->pos()))
{
if (defender->atype() == ACT_PLAYER)
- mpr("You give off a flash of multi-coloured light!");
+ mpr("You give off a flash of multicoloured light!");
else if (you.can_see(defender))
simple_monster_message(defender_as_monster(),
" gives off a flash of "
- "multi-coloured light!");
+ "multicoloured light!");
else
- mpr("There is a flash of multi-coloured light!");
+ mpr("There is a flash of multicoloured light!");
}
}