summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index ff1a1ccd3b..70901ec1cb 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -89,6 +89,7 @@
#include "misc.h"
#include "mon-act.h"
#include "mon-cast.h"
+#include "mon-iter.h"
#include "monplace.h"
#include "monstuff.h"
#include "mon-util.h"
@@ -4025,9 +4026,8 @@ static void _move_player(coord_def move)
mprf(MSGCH_DIAGNOSTICS, "Number of items present: %d", j);
j = 0;
- for (int i = 0; i < MAX_MONSTERS; ++i)
- if (menv[i].type != -1)
- ++j;
+ for (monster_iterator mi; mi; ++mi)
+ ++j;
mprf(MSGCH_DIAGNOSTICS, "Number of monsters present: %d", j);
mprf(MSGCH_DIAGNOSTICS, "Number of clouds present: %d", env.cloud_no);