summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}
}