Beauty In The Eye Of The Orbiter Quest Bug

KungFuCharlie

Chieftain
Joined
Oct 24, 2014
Messages
20
Location
Florida
Quest Goal: Launch 2 of any Orbital Unit

I launched one Miasmic Repulsor and the quest updated with "(1 Launched)". The next turn I launched a second one and the quest did not update. A few turns later I launched a third and the quest updated and completed.

Edit: By completed I mean updated to show the next goal within the quest.
 
Think I may have found the cause of it. The effect range of the launched satellites have to be within a specific distance of a specific city.

In function objective.OnOrbitalUnitLaunched:
Code:
if(distanceToUnit <= unitRange or City.X == nil) then
	objective.PersistentData.NumLaunched = objective.PersistentData.NumLaunched + 1;

So either the distance check should be removed or the dialogs should be updated to specify which city the launch needs to be close to.
 
Top Bottom