|
From: <gi...@cr...> - 2011-08-30 13:40:40
|
via 1203519ab68e5e38fa0d89bfdc0d9dc53b17f57c (commit)
from 23f34ec955d79609dbd4b23a6751de6889bf0379 (commit)
-----------------------------------------------------------------------
commit 1203519ab68e5e38fa0d89bfdc0d9dc53b17f57c
Author: Adam Borowski <kil...@an...>
Date: Tue Aug 30 15:37:50 2011 +0200
Remove two accidentally left debugging statements.
-----------------------------------------------------------------------
Summary of changes:
crawl-ref/source/dungeon.cc | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index adc644f..788a723 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -1398,21 +1398,18 @@ static void _fixup_misplaced_items()
static void _fixup_branch_stairs()
{
- dprf("in _fixup_branch_stairs()");
// Top level of branch levels - replaces up stairs with stairs back to
// dungeon or wherever:
if (your_branch().exit_stairs != NUM_FEATURES
&& player_branch_depth() == 1
&& you.level_type == LEVEL_DUNGEON)
{
- dprf("doing replacement");
const dungeon_feature_type exit = your_branch().exit_stairs;
for (rectangle_iterator ri(1); ri; ++ri)
{
if (grd(*ri) >= DNGN_STONE_STAIRS_UP_I
&& grd(*ri) <= DNGN_ESCAPE_HATCH_UP)
{
- dprf("did it!");
if (grd(*ri) == DNGN_STONE_STAIRS_UP_I)
env.markers.add(new map_feature_marker(*ri, grd(*ri)));
--
Dungeon Crawl Stone Soup
|