From 7124f889e3c585947d594aa38be346bc87c08069 Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 26 Jan 2009 04:43:58 +0000 Subject: Simplify checks for grids containing water. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8763 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/terrain.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/terrain.h') diff --git a/crawl-ref/source/terrain.h b/crawl-ref/source/terrain.h index d4c7bfc812..71a397f746 100644 --- a/crawl-ref/source/terrain.h +++ b/crawl-ref/source/terrain.h @@ -43,11 +43,11 @@ std::string stair_climb_verb(dungeon_feature_type grid); bool grid_is_water(dungeon_feature_type grid); bool grid_is_watery(dungeon_feature_type grid); -god_type grid_altar_god( dungeon_feature_type grid ); -dungeon_feature_type altar_for_god( god_type god ); -bool grid_is_branch_stairs( dungeon_feature_type grid ); +god_type grid_altar_god(dungeon_feature_type grid); +dungeon_feature_type altar_for_god(god_type god); +bool grid_is_branch_stairs(dungeon_feature_type grid); void find_connected_identical(coord_def d, dungeon_feature_type ft, - std::set& out); + std::set& out); void find_connected_range(coord_def d, dungeon_feature_type ft_min, dungeon_feature_type ft_max, std::set& out); -- cgit v1.2.3-54-g00ecf