summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-21 11:48:47 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-21 11:48:47 -0500
commit1995a2a6436f8a2d3216634f24d5ed76d97327e2 (patch)
tree73cd5c98ee890d731e62bc62087048945f9d139c /crawl-ref/source/spells3.cc
parent6256b83c6eac49fc6a01e1ba82b0fb7f53009a0e (diff)
downloadcrawl-ref-1995a2a6436f8a2d3216634f24d5ed76d97327e2.tar.gz
crawl-ref-1995a2a6436f8a2d3216634f24d5ed76d97327e2.zip
Add minor cosmetic fixes.
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 9fd1351592..a28524e9e0 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -115,7 +115,7 @@ bool remove_curse(bool suppress_msg)
{
bool success = false;
- // Only cursed *weapons* in hand count as cursed -- bwr
+ // Only cursed *weapons* in hand count as cursed. - bwr
if (you.weapon()
&& you.weapon()->base_type == OBJ_WEAPONS
&& item_cursed(*you.weapon()))
@@ -1184,7 +1184,7 @@ bool cast_twisted_resurrection(int pow, god_type god)
// the average will be approximately 10 * pow (or about 1000
// at the practical maximum). That's the same as the mass
// of a hippogriff, a spiny frog, or a steam dragon. Thus,
- // material components are far more important to this spell. -- bwr
+ // material components are far more important to this spell. - bwr
total_mass += roll_dice(20, pow);
#if DEBUG_DIAGNOSTICS