We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ff9bd6 + f1488ed commit 3181775Copy full SHA for 3181775
src/overmap.cpp
@@ -4304,8 +4304,9 @@ void overmap::move_hordes()
4304
mon_end = hordes.end(); mon != mon_end; ) {
4305
// This might have an issue where a monster prevented from acting possibly should
4306
// get another chance to act?
4307
- if( mon->second.last_processed == calendar::turn ||
4308
- mon->second.get_type()->has_flag( mon_flag_DORMANT ) ) {
+ // This is here so that when a entity moves from one bucket to another it doesn't
+ // get a second set of moves.
4309
+ if( mon->second.last_processed == calendar::turn ) {
4310
mon++;
4311
continue;
4312
}
0 commit comments