summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-03 06:15:49 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-03 06:15:49 +0000
commit55e422bf9dcda3c8515848e84e079da6dc9a9ad9 (patch)
tree2c157c11685b0eabf6687db8662977228e8e9287 /crawl-ref/source/dungeon.cc
parent372b7c5803a47c4f2aaa246867aeb0c4bbd2abaf (diff)
downloadcrawl-ref-55e422bf9dcda3c8515848e84e079da6dc9a9ad9.tar.gz
crawl-ref-55e422bf9dcda3c8515848e84e079da6dc9a9ad9.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8161 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 779538c1b8..4c507001df 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -4897,7 +4897,7 @@ static void _vault_grid( vault_placement &place,
if (vgrid == 'F' && one_chance_in(100))
{
vgrid = '.';
- create_monster(mgen_data::hostile_at( _random_evil_statue(), where));
+ create_monster(mgen_data::hostile_at(_random_evil_statue(), where));
}
// First, set base tile for grids {dlb}:
@@ -6436,7 +6436,7 @@ static void _labyrinth_place_items(const coord_def &end)
static void _labyrinth_place_exit(const coord_def &end)
{
_labyrinth_place_items(end);
- mons_place( mgen_data::sleeper_at(MONS_MINOTAUR, end, MG_PATROLLING) );
+ mons_place(mgen_data::sleeper_at(MONS_MINOTAUR, end, MG_PATROLLING));
grd(end) = DNGN_ESCAPE_HATCH_UP;
}