summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-06-14 12:41:28 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-06-14 12:41:28 +0100
commitd7db8703a6acb039783a874483a7174c9ad0fb00 (patch)
tree19af7fc2d009559caaa36a38320a38f444404c0c /crawl-ref/source/describe.cc
parent2fbdc9b8aa11a89ac88aa1bbb054df123bfabc24 (diff)
downloadcrawl-ref-d7db8703a6acb039783a874483a7174c9ad0fb00.tar.gz
crawl-ref-d7db8703a6acb039783a874483a7174c9ad0fb00.zip
Fix slaying descriptions
Something shorter would be good, but "non-spells" is inaccurate.
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 1d8f490862..11c660aedd 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -444,8 +444,8 @@ static string _randart_descrip(const item_def &item)
{ ARTP_STRENGTH, "It affects your strength (%d).", false},
{ ARTP_INTELLIGENCE, "It affects your intelligence (%d).", false},
{ ARTP_DEXTERITY, "It affects your dexterity (%d).", false},
- { ARTP_SLAYING, "It affects your accuracy and damage with non-spells.",
- false},
+ { ARTP_SLAYING, "It affects your accuracy and damage with ranged "
+ "weapons and melee attacks (%d).", false},
{ ARTP_FIRE, "fire", true},
{ ARTP_COLD, "cold", true},
{ ARTP_ELECTRICITY, "It insulates you from electricity.", false},
@@ -1408,7 +1408,7 @@ static string _describe_jewellery(const item_def &item, bool verbose)
case RING_SLAYING:
description += "\nIt affects your accuracy and damage "
- "with non-spells (";
+ "with ranged weapons and melee attacks (";
_append_value(description, item.plus, true);
description += ").";
break;