summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-14 17:56:42 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-14 17:56:42 +0000
commit661eef8d4e4e4c19309a45aa154b5a2349371435 (patch)
treefec6de01d21a940a3d25b9091a1d4d7d48c4ae2f /crawl-ref
parenta88acc05c60f76f0ae700f3a5f43c7cbd644758b (diff)
downloadcrawl-ref-661eef8d4e4e4c19309a45aa154b5a2349371435.tar.gz
crawl-ref-661eef8d4e4e4c19309a45aa154b5a2349371435.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5817 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/debug.cc3
-rw-r--r--crawl-ref/source/dungeon.cc5
2 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index f5fa57e322..56d765d51e 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -2829,8 +2829,7 @@ static int _create_fsim_monster(int mtype, int hp)
const int mi =
create_monster(
mgen_data::hostile_at(
- static_cast<monster_type>(mtype),
- you.pos() ) );
+ static_cast<monster_type>(mtype), you.pos()));
if (mi == -1)
return (mi);
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 01eb98961b..4f75b55a7a 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -4751,7 +4751,8 @@ static int _vault_grid( vault_placement &place,
{
vgrid = '.';
create_monster(
- mgen_data::hostile_at( _random_evil_statue(), coord_def(vx, vy) ));
+ mgen_data::hostile_at(
+ _random_evil_statue(), coord_def(vx, vy)));
}
// First, set base tile for grids {dlb}:
@@ -4927,7 +4928,7 @@ static int _vault_grid( vault_placement &place,
grd[vx][vy] = DNGN_FLOOR;
create_monster(
- mgen_data::hostile_at( mtype, coord_def(vx, vy) ));
+ mgen_data::hostile_at(mtype, coord_def(vx, vy)));
}
// Finally, handle grids that place monsters {dlb}: