summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mon-util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index bb16c18c50..e8cc6205fd 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -3600,7 +3600,7 @@ void monsters::apply_enchantments(int spd)
const mon_enchant_list ec = enchantments;
for (mon_enchant_list::const_iterator i = ec.begin();
- i != ec.end(); )
+ i != ec.end(); ++i)
{
apply_enchantment(*i, spd);
if (!alive())