summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-27 02:33:47 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-27 02:33:47 +0000
commit1453a4ca617432ab205dc73cde03586baad49259 (patch)
treefe153471b4835c545ddeb76781bb1b30dd4dff08
parenta4fafc6644046fe8c7b758861d396e915a3b00c6 (diff)
downloadcrawl-ref-1453a4ca617432ab205dc73cde03586baad49259.tar.gz
crawl-ref-1453a4ca617432ab205dc73cde03586baad49259.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9249 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mtransit.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/mtransit.cc b/crawl-ref/source/mtransit.cc
index 9d99782177..45f4c9ba3e 100644
--- a/crawl-ref/source/mtransit.cc
+++ b/crawl-ref/source/mtransit.cc
@@ -213,10 +213,11 @@ void place_transiting_items()
pos.y = random_range(Y_BOUND_1 + 1, Y_BOUND_2 - 1);
}
- const coord_def where_to_go
- = dgn_find_nearby_stair(DNGN_ESCAPE_HATCH_DOWN, pos, true);
+ const coord_def where_to_go =
+ dgn_find_nearby_stair(DNGN_ESCAPE_HATCH_DOWN,
+ pos, true);
- // List of items we couldn't place
+ // List of items we couldn't place.
if (!copy_item_to_grid(*item, where_to_go))
keep.push_back(*item);
}