summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
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: