Prerequisites
Game Version
Bug Description
Game completely locks up. This happened in a recent game of Legionaire
Reproduction Steps
See attached replay. Happens around 1h:33m
Legi Defcon 6 lockup.zip
Additional Context
Initial investigation by @Mauller and @Caball009 yielded this is an issue with pathfinding not cleaned up
where during sorting in putOnSortedOpenList the game never breaks out of the following for-loop.
// insertion sort
PathfindCell *c, *lastCell = NULL;
for( c = list; c; c = c->getNextOpen() )
{
if (c->m_info->m_totalCost > m_info->m_totalCost)
break;
lastCell = c;
}
Prerequisites
Game Version
Bug Description
Game completely locks up. This happened in a recent game of Legionaire
Reproduction Steps
See attached replay. Happens around 1h:33m
Legi Defcon 6 lockup.zip
Additional Context
Initial investigation by @Mauller and @Caball009 yielded this is an issue with pathfinding not cleaned up
where during sorting in
putOnSortedOpenListthe game never breaks out of the following for-loop.