summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-act.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-act.cc')
-rw-r--r--crawl-ref/source/mon-act.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-act.cc b/crawl-ref/source/mon-act.cc
index 1501d747a8..d930815296 100644
--- a/crawl-ref/source/mon-act.cc
+++ b/crawl-ref/source/mon-act.cc
@@ -1747,7 +1747,9 @@ static void _handle_monster_move(monsters *monster)
_monster_regenerate(monster);
- if (monster->cannot_act())
+ if (monster->cannot_act()
+ || monster->type == MONS_SIXFIRHY // these move only 4 of 12 turns
+ && ++monster->number / 4 % 3 != 2) // but are not helpless
{
monster->speed_increment -= non_move_energy;
continue;