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>2008-06-23 15:46:50 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-23 15:46:50 +0000
commitc4f8ee4f6aecbef73857e7fc9e3af5112c07412d (patch)
tree9402ccf2b3159ebf277d130f6c802d29c12c2da8 /crawl-ref/source/describe.cc
parent942c5b352c3854cc68c9359f3ad561e7a1645dd7 (diff)
downloadcrawl-ref-c4f8ee4f6aecbef73857e7fc9e3af5112c07412d.tar.gz
crawl-ref-c4f8ee4f6aecbef73857e7fc9e3af5112c07412d.zip
Tweak Trog's Berserk description - he doesn't routinely prevent
followers from passing out, though the chance eventually reaches 100%. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6084 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 9581b778c0..502c609395 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3063,7 +3063,10 @@ std::string get_skill_description(int skill, bool need_title)
unarmed_attacks.push_back("kick your enemies");
}
- unarmed_attacks.push_back("punch monsters with your free hand");
+ if (you.equip[EQ_WEAPON] == -1)
+ unarmed_attacks.push_back("punch monsters");
+ else if (you.equip[EQ_SHIELD] == -1)
+ unarmed_attacks.push_back("punch monsters with your free hand");
if (!unarmed_attacks.empty())
{