summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-28 14:41:57 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-28 14:41:57 +0000
commit571e6c5aac08d6c446965e3a4cf76bb1b044c5df (patch)
tree130eaaf6e8b53fb11c080a7ab07d92345121f662 /crawl-ref/source/spl-cast.cc
parent90d0e8c3f9d3fdcd0aa0ef1a479ad178ca3ad7e2 (diff)
downloadcrawl-ref-571e6c5aac08d6c446965e3a4cf76bb1b044c5df.tar.gz
crawl-ref-571e6c5aac08d6c446965e3a4cf76bb1b044c5df.zip
Apply a patch by castamir to fix a multitude of typos.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8005 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index d24e2b1523..d448f053c5 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -914,7 +914,7 @@ static void _try_monster_cast(spell_type spell, int powc,
return;
}
- mpr("Invalid player spell, attemtping to cast it as monster spell.");
+ mpr("Invalid player spell, attempting to cast it as monster spell.");
monsters* mon = &menv[midx];
@@ -4435,7 +4435,7 @@ void MiscastEffect::_earth(int severity)
else
{
you_msg = "You momentarily stiffen.";
- mon_msg_seen = "@The_monster@ momentariliy stiffens.";
+ mon_msg_seen = "@The_monster@ momentarily stiffens.";
}
break;
case 11:
@@ -4462,7 +4462,7 @@ void MiscastEffect::_earth(int severity)
case 1:
you_msg = "You are blasted with sand!";
mon_msg_seen = "@The_monster@ is blasted with sand!";
- mon_msg_unseen = "A minature sandstorm briefly appears!";
+ mon_msg_unseen = "A miniature sandstorm briefly appears!";
break;
case 2:
you_msg = "Rocks fall onto you out of nowhere!";
@@ -4644,7 +4644,7 @@ void MiscastEffect::_air(int severity)
"discharges!";
mon_msg_seen = "@The_monster@ is caught in an explosion of "
"electrical discharges!";
- mon_msg_unseen = "Elecectrical discharges explodes from out of "
+ mon_msg_unseen = "Electrical discharges explodes from out of "
"thin air!";
beam.type = dchar_glyph(DCHAR_FIRED_BURST);
@@ -4910,5 +4910,5 @@ std::string spell_range_string(spell_type spell)
else
return std::string("@") + std::string(range, '.')
+ "<darkgrey>" + std::string(maxrange - range, '.')
- + "</dargrey>";
+ + "</darkgrey>";
}