summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-18 11:43:07 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-18 11:43:07 +0000
commit744fc99610098d9572508383f39a7aa5107f7762 (patch)
tree7910c991a1e4a766509189e5789e2eff33d815d0 /crawl-ref/source/describe.cc
parentfeedf73958a200699cd2c7033d28b0f33959fb47 (diff)
downloadcrawl-ref-744fc99610098d9572508383f39a7aa5107f7762.tar.gz
crawl-ref-744fc99610098d9572508383f39a7aa5107f7762.zip
TSO worshippers with the stinger mutation will not use the tailslap
unarmed attack. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9514 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 9b43b76a8c..c57a3beb73 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3644,7 +3644,12 @@ std::string get_skill_description(int skill, bool need_title)
|| you.species == SP_MERFOLK && player_is_swimming()
|| player_mutation_level( MUT_STINGER ))
{
- unarmed_attacks.push_back("slap with your tail");
+ // TSO worshippers will not use their venomous tails.
+ if (!(you.religion == GOD_SHINING_ONE
+ && player_mutation_level(MUT_STINGER)))
+ {
+ unarmed_attacks.push_back("slap with your tail");
+ }
}
if (player_mutation_level(MUT_FANGS)