summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-28 20:39:31 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-28 20:39:31 +0000
commit0ffadca40b94c481141887d294d311ff738c2ad1 (patch)
tree2f45968b11a526f839411b19d13b5b4217bbd72c /crawl-ref/source/player.cc
parent3183b13800fe91b715929ef5f08b5683c1856a87 (diff)
downloadcrawl-ref-0ffadca40b94c481141887d294d311ff738c2ad1.tar.gz
crawl-ref-0ffadca40b94c481141887d294d311ff738c2ad1.zip
Fix 2005269: trolls being capable of wearing almost all armour types.
Remove dated mentions of item sacrifices in print_god_likes(). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6188 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 90466a5011..f0e5882a14 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -5688,11 +5688,12 @@ bool player::can_pass_through_feat(dungeon_feature_type grid) const
size_type player::body_size(int psize, bool base) const
{
- size_type ret = (base) ? SIZE_CHARACTER : transform_size( psize );
+ size_type ret = (base) ? SIZE_CHARACTER
+ : transform_size( psize );
if (ret == SIZE_CHARACTER)
{
- // transformation has size of character's species:
+ // Transformation has size of character's species.
switch (species)
{
case SP_OGRE: