summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-13 08:18:55 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-13 08:18:55 +0000
commit43c3f753a994754337bcae92e498a1f5b6463a83 (patch)
tree34f6dac9ecf0e314b0e3501fe99029d82320641c /crawl-ref/source
parent6be49f6bbc97b009200844fd8f3d6f8f07dacacf (diff)
downloadcrawl-ref-43c3f753a994754337bcae92e498a1f5b6463a83.tar.gz
crawl-ref-43c3f753a994754337bcae92e498a1f5b6463a83.zip
Fixed 1699133: kenku message should note that they can't wear boots.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1293 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/describe.cc2
-rw-r--r--crawl-ref/source/mutation.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 9336702f90..3cee706457 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1639,7 +1639,7 @@ static std::string describe_armour( const item_def &item, bool verbose )
description += "$";
}
- int ego = get_armour_ego_type( item );
+ const int ego = get_armour_ego_type( item );
if (ego != SPARM_NORMAL
&& item_type_known(item)
&& verbose)
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 77e5a28acb..b7ccb59f42 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -960,7 +960,7 @@ formatted_string describe_mutations()
break;
case SP_KENKU:
- result += "You cannot wear helmets." EOL;
+ result += "You cannot wear boots or helmets." EOL;
if (you.experience_level > 4)
{
result += "You can fly";