summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-25 11:10:16 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-25 11:10:16 -0600
commitfa8b82009f6db843167bd034991367088e73f4fb (patch)
tree22a3080444d669269d291330119ed229ff701e51 /crawl-ref/source/describe.cc
parentf6ba4a965e2734be6c0b9abf4ab0818456588c64 (diff)
downloadcrawl-ref-fa8b82009f6db843167bd034991367088e73f4fb.tar.gz
crawl-ref-fa8b82009f6db843167bd034991367088e73f4fb.zip
Tweak wording.
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc13
1 files changed, 8 insertions, 5 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 06d1ba722d..692aa655b4 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -841,14 +841,17 @@ static std::string _describe_weapon(const item_def &item, bool verbose)
break;
case SPWPN_REAPING:
if (is_range_weapon(item))
+ {
description += "If ammo fired by it kills a monster, "
"causing it to leave a corpse, the corpse will be "
- "animated as a zombie friendly to the one who fired "
- "it.";
+ "animated as a zombie friendly to the killer.";
+ }
else
- description += "All monsters killed with it which leave "
- "corpses in good enough shape will be reanimated as "
- "a zombie friendly to the killer.";
+ {
+ description += "If a monster killed with it leaves a "
+ "corpse in good enough shape, the corpse will be "
+ "animated as a zombie friendly to the killer.";
+ }
break;
}
}