summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-04 16:39:47 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-04 16:39:47 +0000
commit6cdfce3a5d6cb09844d0c64d6b394edc7d2c3f5a (patch)
treeea1d8997211b108100f052c540b22136634bfeec /crawl-ref/source/describe.cc
parent90d9577ea254baac92c76931361d048d983fb6c0 (diff)
downloadcrawl-ref-6cdfce3a5d6cb09844d0c64d6b394edc7d2c3f5a.tar.gz
crawl-ref-6cdfce3a5d6cb09844d0c64d6b394edc7d2c3f5a.zip
Elyvilon ability descriptions split into healing and self-healing.
Removed two more stray uses of minor/major healing. Shortened too long ability lines on ^ display. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9577 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index bc612b78fc..e8ff3bd57d 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3479,10 +3479,8 @@ void describe_god( god_type which_god, bool give_title )
textcolor(colour);
// mv: Some gods can protect you from harm.
- // I'm not sure how to explain such divine protection because
- // god isn't really protecting player - he only sometimes saves
- // his life (probably it shouldn't be displayed at all).
- // What about this?
+ // The god isn't really protecting player - only sometimes saving
+ // his life.
bool have_any = false;
if (harm_protection_type hpt =
@@ -3565,9 +3563,9 @@ void describe_god( god_type which_god, bool give_title )
else if (which_god == GOD_ELYVILON)
{
have_any = true;
- std::string buf = "You can call upon ";
+ std::string buf = "You can destroy weapons on the ground in ";
buf += god_name(which_god);
- buf += " to destroy weapons lying on the ground.";
+ buf += "'s name.";
_print_final_god_abil_desc(which_god, buf,
ABIL_ELYVILON_DESTROY_WEAPONS);
}