summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index 14ab8056bd..6c5dc1b637 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -591,17 +591,17 @@ void abyss_teleport( bool new_area )
// Teleport to a new area of the abyss.
- init_pandemonium(); // Get new monsters
- dgn_set_colours_from_monsters(); // ...and new colours.
+ // Get new monsters and colours.
+ init_pandemonium();
- for (i = 0; i < MAX_MONSTERS; i++)
+ for (i = 0; i < MAX_MONSTERS; ++i)
{
if (menv[i].alive())
_abyss_lose_monster(menv[i]);
}
// Orbs and fixed artefacts are marked as "lost in the abyss".
- for (k = 0; k < MAX_ITEMS; k++)
+ for (k = 0; k < MAX_ITEMS; ++k)
{
if (is_valid_item( mitm[k] ))
{