summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-20 23:33:00 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-20 23:33:00 +0000
commite87a10675f4aa5a08cc82e031385a74d26cb1732 (patch)
tree16d19149f80708f5c5e0c3d58f32c42f4d771203 /crawl-ref/source/describe.cc
parent037b6326b7b553ff7610b9ef70207aee35d9defa (diff)
downloadcrawl-ref-e87a10675f4aa5a08cc82e031385a74d26cb1732.tar.gz
crawl-ref-e87a10675f4aa5a08cc82e031385a74d26cb1732.zip
A few small changes:
- self targetting for "bad" wands defaults to 'n' - switching weapons for dissection ignores wield_warning - nets do damage 0 (really) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2022 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 704ec52e2e..3bebee1834 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3920,10 +3920,9 @@ static std::string religion_help( god_type god )
+ std::string(god_name(god)) + " to bless a ";
result += (god == GOD_ZIN ? "mace" : "long sword");
result += ".";
- break;
}
break;
-
+
case GOD_LUGONU:
if (!player_under_penance() && you.piety > 160
&& !you.num_gifts[god])
@@ -3947,8 +3946,9 @@ static std::string religion_help( god_type god )
break;
case GOD_VEHUMET:
- result += "Vehumet assists you in casting Conjurations"
- " and Summonings during prayer.";
+ if (you.piety >= 50)
+ result += "Vehumet assists you in casting Conjurations"
+ " and Summonings during prayer.";
break;
default: