summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-23 22:44:50 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-23 22:44:50 +0000
commit1c46649f35b7423825ea143b614661bc502c9cc5 (patch)
tree71d8521d6c53a0b05573ba3ba0c1b480fbb888dc /crawl-ref/source/player.cc
parentea9b36154067b4b24fa9deaf34185bf75f1fbdfc (diff)
downloadcrawl-ref-1c46649f35b7423825ea143b614661bc502c9cc5.tar.gz
crawl-ref-1c46649f35b7423825ea143b614661bc502c9cc5.zip
Add more spacing fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9690 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 6cdd04d41b..ee4899807d 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -388,18 +388,18 @@ bool is_grid_dangerous(int grid)
|| (grid == DNGN_DEEP_WATER && !player_likes_water())));
}
-bool player_in_mappable_area( void )
+bool player_in_mappable_area(void)
{
return (!testbits(env.level_flags, LFLAG_NOT_MAPPABLE)
&& !testbits(get_branch_flags(), BFLAG_NOT_MAPPABLE));
}
-bool player_in_branch( int branch )
+bool player_in_branch(int branch)
{
return (you.level_type == LEVEL_DUNGEON && you.where_are_you == branch);
}
-bool player_in_hell( void )
+bool player_in_hell(void)
{
// No real reason except to draw someone's attention here if they
// mess with the branch enum.